eBook Publishing Service for New and Established Authors

It really couldn’t be simpler to submit an eBook to Amazon or any of the other major on-line booksellers. Provided of course that you have written the book and that you own the digital rights to it. This assumes that if you have published the book as a printed version, you have not inadvertently signed away the rights of digital versions to your publisher. Only a few new authors will have been affected in this way, but you will need to double check if you are not sure. Because every major book distributor will ask you to declare that you have the legal right to publish the book you are submitting before they will accept it.

eBook PublishingNow when I say it couldn’t be simpler to submit an eBook, that statement is true, but preparing your book for submission can actually be a little tricky for some. Especially if you are not particularly turned on by preparing word processor documents ready to convert the files into formats that are not only accepted by the major distributors, but also actually function as an eBook when purchased by the general public.

With patience and time to spare, most people can work through the process following the guidelines that the publishers provide and they can get the book into a state that is acceptable for submission. Doing this of course means that you can publish at minimal or no cost to yourselves. An option that will be very attractive to authors who may have spent a lot of money trying to get their book into the public eye.

Following the advice of the marketing specialists, simply placing your eBook on the distributors site for sale will not be enough to attract buyers initially. There are a few critical aspects to making sure your book gets found and for promoting it. The first ones to ensure your book gets found are:

  • Selecting the correct categories
  • Selecting the correct search terms

These are critical to ensure that people can find your book when they visit the distributor’s website and use their search facility. In truth if someone is searching on Google or one of the other search engines, getting this aspect right will not do any harm either.

Then there is the book promotion, remembering of course that there will be a lot of competing products so you will need to be able to stand out from the crowd. Promoting a book, is a little bit like promoting an on-line business and you need to use as many of the available tools as you can to ensure success.

The marketing specialists will refer to many tools for book promotion but the first and most important is a website or blog. Ideally this will be a self hosted and registered domain that either uses the name of the book or the name of the author, the latter is better if there are several books to promote from a single author and/or the author is well known. Your website/blog can be used as the platform for linking to your book on distributor’s websites, providing extracts from your book (as a tasters of what the book contains), utilising promotional tools, selling your books directly and providing general profile information about you the author.

Other promotional tools:

  • Social Media Sites, Twitter, Facebook etc. etc.
  • Audio publishing, using your website or blog
  • Video promotions via YouTube etc. (can also be published on your website or blog)
  • Press releases
  • Article publishing via your blog and article directories
  • Forums
  • pdf eBooks illustrating how the book looks in printed format
  • Getting the price right

There will be other ways to promote your book, but the ones listed are the primary ones and as you can see the website that supports the book or author is very much the main focus and tool for any promotional campaign.

Sources of help for self publishing eBooks:

Something to remember is that if you want to publish your book in ePub format (required for the iBook Store) the file submitted will need to pass the epubcheck without errors or problems.

The alternative to undertaking the task yourself is to get the work done on your behalf and this is a service that we now offer. You can check out the details on our eBook Publishing page to see what you need to do. The cost is dependent on the complexity of your book, but we do promise to clearly detail the complete price based on your requirements and there will be no hidden costs. You will retain all rights to your book and it will be a one off price for the complete block of work detailed in the quote.

Get in touch now to get the ball rolling and have your book on Amazon (with a supporting website or blog if requested) within a few days.

Posted in eBook Publishing | Tagged , , , , , , , | Leave a comment

Check SERP Position by Keyword for a Domain

This is just a very quick post to tell you about a site that allows you to check your position in the search engine results pages by keywords for your domain. So if you are trying to promote a website page for a certain set of keywords this tool will tell you how you are getting on, or not getting on as is the case sometimes. But, for the latter, at least you will know and then you can do something about it.

Here is the link Check SERP Position by Keyword for a Domain

Pretty useful tool whether you are doing your own SEO or someone is doing it for you.

Posted in check page rank | Tagged , , , | Leave a comment

Check Page Rank on All Blog Posts and Website Pages

Check Page Rank on All Blog Posts and Website Pages

Checking the page rank on individual blog posts or web pages is a great way to get an insight into what are popular topics from the content you publish. This is not always easy to accomplish when there are multiple pages or blog posts to consider. Many people simply trawl through the individual URL’s checking the page rank on an individual basis.

There is usually a solution to most problems on the Internet and page rank checking is no exception. This one was not as straightforward as simply finding a Plugin or extension to do the job but there was a script available that essentially uses an XML sitemap to identify all the required pages and another one that pulls the associated PR for those pages. Putting the two together was a stroke of genius and how it was done is described on the Page Rank Checker article.

The end result of following the instructions detailed in the article is a very useful Multiple Page Rank Checker that simply requires an XML sitemap to run it.

Visit the blog post check page rank for more information on creating site maps for WordPress Blogs or find out how to create a sitemap for your web design using this link.

Posted in check page rank | Leave a comment

CSS Formatting for Mulitple Drop Down Menu and Relative Position Divs

This post will be of great interest to web designers that use Dreamweaver. The reason for saying this is that in the past I have discussed how tricky it can be to create a drop down menu system for multiple pages that is both search engine friendly, fast to react and works flawlessly.

Something that, for many websites, is going to be an essential requirement, as they grow from a humble beginning into a significant Internet presence with many multiples of pages.

So apart from the content, what are the primary design features that a website needs to allow new pages to be added easily and at will: visit

  • Using templates to update multiple pages in a few keystrokes
  • Adopting a CSS and list based drop down menu that can have new categories added very quickly and easily
  • Using navigation that can be spidered instantly by search engines, as opposed to Flash or Java based options
  • Using a layout format that can grow with the content i.e. using ‘relative div positioning’ as opposed to ‘absolute div positioning’

By combining all these features, you should be able to see that pages, based on a simple template, can be created where the footer and contents sections adapt and re-position themselves automatically to accommodate the content being added.  This makes the whole process of creating new pages and publishing them much simpler and quicker.

So first things first, how to create a fast loading, search engine friendly, multiple page dropdown menu. Probably the best tutorial I have seen on the subject.

 

There are one or two problems associated with this tutorial, the first is that when you place a div below the menu, it sits in front of the drop down portion obscuring the view. My solution to this was as follows:

  • Hi, I added a Z-Index value of 1 to the ‘#navMenu ul ul’ div and viewed it in IE7, seemed to work fine for me. I also checked Google Chrome and Mozilla, they were all OK after I did this. None worked before I added the Z-Index. I updated it in the CSS Rule Definition box under positioning. But there is actually a better solution, just add a Z-Index of 9999 to the #navMenu ul li:hover ul. This always ensures it is the very top layer and was found on this page CSS Drop Down Menu Tutorial
  • Someone else also made this comment which fixed the problem for him – “OK fixed: had to add DOCTYPE? in the head in to the html file which I didn’t do at first as I was practicing these menus.”

The other problem was that he didn’t create any CSS code for the wrapper, but if you visit this tutorial on using div positioning, you should be able to work things out for yourself. This tutorial also covers how you configure your divs for automatic re-positioning as content is added.

OK that takes care of the formatting side of things, now for quick updates using templates. This part is for web designers that use Dreamweaver because it discusses creating and using Dreamweaver templates. Again it was the best tutorial I could find on the subject.

The main thing to remember when using templates is that the portions of the page you want to edit should be turned into ‘editable regions’. Then when you want a new page you just go to the file menu and click on new. You will then be able to select the template you want and create your new page, then add content or update the ‘editable sections’.

All in all pretty much everything you need to create a website that can be developed and added to very quickly. So a big thanks to the guys that created the tutorials.

The next aspect to look at is how to make that horizontal menu vertical so that it is even more flexible. One for the future, I think.

Posted in navigation, using CSS | Tagged , , , , | 2 Comments

Release of New Puppy and Dog Care Website

The latest offering from Moulin Website Design is a website dedicated to Puppy and Dog Care, another site which can be added to the ever growing portfolio of websites. This is a nice design example for customers but also has some interesting design features for web designers.

The reason for saying this is that in the past I have discussed how tricky it can be to create a drop down menu system for multiple pages that is both search engine friendly, fast to react and works flawlessly. Something that, for this particular website, is going to be an essential requirement, as it grows from its humble beginning into a significant Internet presence with many multiples of pages.

So apart from the content, what are the primary design features that a website needs to allow new pages to be added easily and at will: visit this Multiple Drop Down Menu article to find out.

Posted in website design | Leave a comment