Showing posts with label SEO tips. Show all posts

Solving "Preload key requests" point on PageSpeed for WordPress sites

Getting a good score on Google PageSpeed is important if you want to rank higher and in the process provide a better experience to your users. However with the constantly updating system of PageSpeed you have to tackle new issues. One of the recent updates now focuses on preloading key requests on your site.


Update 3rd Jan 2020 : Modified the code to support extra attributes like crossorin and type that is required for some other types of content such as Fonts file. 

Browsers are smart and to make use of it there's something called pre-loading of requests, that is you tell the browser to already pre-load a set of resources ahead of time which you know will be used in the future.

This tutorial is focused towards WordPress sites but the technique is same for any site, it's just a few lines of HTML that goes on top of the <head> of your website.

I won't discuss what's preloading a request is in detail but if you would like to know more check this out: https://web.dev/uses-rel-preload/

Note: There is another point that sounds very similar, it is "preconnect", it is for pre-fetching DNS that we know will be required.  There will be another similar tutorial for that, so stay tuned.

It looks something like this in the PageSpeed report:



/*
* Preload the s**t out of Google
*/

function stramaxon_preload_requests_html() {
$preloadRequests = array(
array(
'as' => 'style',
'href' => '/wp-content/themes/example/style.css',
'type' => 'text/css'
),
array(
'as' => 'script',
'href' => '/wp-content/themes/example/main.js',
'type' => 'text/javascript'
),
array(
'as' => 'font',
'href' => '/wp-content/themes/example/font.woff2',
'type' => 'font/woff2',
'crossorigin' => 'crossorigin'
),

$linksHtml = '';

foreach ($preloadRequests as $val) {

$attrs = '';

foreach ($val as $key => $att ) {
$attrs .= $key . '="' . $att . '" ';
}

$linksHtml .= '<link '. $attrs .' rel="preload">';
}

echo $linksHtml;
}

add_action('wp_head', 'stramaxon_preload_requests_html', -100);

The above code will go into your theme's functions.php file. All you have to do here it add elements to the array  $preloadRequests and define the href and as value as required.

Are you looking to solve another Google PageSpeed x WordPress problem? Let us know in the comments, we will be happy to write a blog post for that as well.

Blogger Page and Post Titles Style for Better SEO

Definitely content is the king, but how we present the content to the people and also the search bots is an important aspect. In this post we will talk about how to display page titles of your blog in order to get highest visibility on search engines like Google.

SEO short of Search Engine Optimization is a broad topic on how to maintain and create a website / blog that performs well enough with search engine bots so it comes up on user queries at the best ranking possible. 

That doesn't mean SEO is a very complicated topic, yet applying it might be somewhat require a learning curve since editing code and adding functionalities to websites require one to be familiar with codes. 

What's with the page title of Blogger Blogs?

Skip to the next section to learn how to optimize the blog's page title, to learn more about it read below.

The page title we are talking about is the document title of a web page that appears in most browsers in the tab - in HTML it is situated in the HEAD of a web page as
<title>Blog Title - Some Example Page</title>

Majority of Blogger templates (expect for the themes that has been recently introduced) have a very unconventional and non-optimized for search way of display the page title on posts in Blogger blogs.

Each of your posts is a different web page on your blog, and it is important that all of them are optimized for SEO, primary focus should be on the content, and another important aspect, which we are discussing here, is the page title, it's the part that appears on search engine's results.

Check this and ask yourself, which one gives a human being more detail about the search result for the term "How to add CSS to Blogger Blogs"?



Search engines wants values small but descriptive page titles, it is a bad idea to take up a significant amount of space in your page title with your blog's title.

A page title on posts page can be and generally are consisted of two parts, "The post title - The Blog Title", the problem with many Blogger themes / templates are that it puts the blog title first even on post pages, so if one has a blog named "Alison's Travel Photography Blog" a blog post on the blog will have a page title like "Alison's Travel Photography Blog : This Is The Title of The Post"

We are just going to optimize this for search in Blogger.

Optimizing Page Title for Search Engines

This is a very small change to make though it can make significant amount of difference in your search rankings and we recommend you to do this if your page titles aren't optimized yet.

Blogger has launched new themes recently which already has better page title than the old ones, but if you are using a third-party template or Blogger's default templates follow the steps below.

For Normal Blogger Templates and Third-Party Templates

It is recommended that you take a backup of your template before proceeding. 

The following steps are for normal blogger templates that you can choose from the theme selection area in Blogger or third-party templates based on those templates.
  1. Go to your Blogger Dashboard (https://www.blogger.com)
  2. On the blog's dashboard, go to the Theme section

  3. When you are in the Theme section, click on the "Edit HTML" button under your blog's preview.
  4. After the template code appears on the screen, focus in the template code area and hit CTRL+F / ⌘ + f and search for the following piece of code, tip: only enter <title> should bring this up.

    <title><data:blog.pageTitle/></title>

  5. Delete the line of code that found in the last step, and replace it with this code:

    <b:if cond='data:blog.pageType == &quot;index&quot;'>
    <title><data:blog.title/></title>
    <b:else/>
    <title><data:blog.pageName/> | <data:blog.title/></title>
    </b:if>

  6. Save the template and visit your blog. Check your page's title in the browser's tab to see if it is SEO optimized or not. 

The "|" is a character that will separate your current page name and the main blog title, i.e "My Blog | An example blog post title" or "Stramaxon | How to add CSS" etc. 

If you like you can change that to something else such as "/", ":", "||". It is a preference but may also have some effect on SEO, so pick a different one only when you are sure what you are doing. 

EXTRA: Adding Blog's Tagline in Title

The instructions in the section above works great even without modifications but if you like you can add a tag line of your blog in the page title so that it appears in the browser's tab and most importantly in

Benefit of adding a tag line: If your blog's title is short, then adding a tag line makes fill up the left space. Your blog's results will look better and your reader can tell what your blog is about right from the search itself.

The code that you were given produces the result like A, and the following will produce the result B. It is highly recommended you add a tag line for your blog if your blog title is short.

Here's the code (similar to the code in the main steps, only added the description part):

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.title/> - Enter your Blogs Tagline</title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>

Copy the code and paste it first in a notepad editor, and replace the part Enter your Blogs Tagline with your own tag line: Keep it short and descriptive, it is what will appear in searches along with your blog title, so make it attractive, short and simple.

The steps to add this code is similar to the steps given in the previous section.

Search Optimization and Results

Following this tutorial and making this change to your blog may or may not give you immediate results. To improve your search visibility you still have to post genuine and content that your readers would like to read, this tutorial helps you make your blog's visibility better for what you already have and going to post in the future on your blog. 



If you have questions or have any suggestions then please do comment down below.


The tutorial will be updated to list steps for new Blogger themes...

Placing Ads Inside Blog Post Without Affecting SEO

Normally website owners place ads in sidebars, header and/or footer but placing it inside the main article can  boost up your earnings but if is it safe to do that ?
The main content of your blog is the article and that's what the visitors come to see on your blog and placing ads in between the main article can give you a better CTR and better CTRL means more revenue, yup it's a great idea to put ads there but the question is, will it affect the blog's search engine rankings ? Yup, it can. If you put static ads (without JS) then it would affect the rankings and the way Google and search engine views your website, what happens is that the search engine would think that the ads are a part of your main content and it can lead to a complete misunderstanding.

How to make it better?

It's very simple, all you have to do is wrap the ad code in a <aside> like this:
<aside>
//Your Advertisement Script Here
</aside>
Now even being inside the article container it will not be a part of the main flow. For contents that's related to but not the part of the main content use this tag to make Google and search engine understand your content more efficiently. It's a W3C recommendation http://www.w3.org/wiki/HTML/Elements/aside

Where else I can use it?

According to the specs you may use it for content that's related to the main flow but considered separate from it. It includes advertisement (already resolved), related post links, author info, navigation menu i.e breadcrumbs links etc.

It's not only important for search engine optimization but also improves the document layout of your website.

I want to know more about it

Great, there are lots of resources online you may find helpful.
https://developer.mozilla.org/en-US/docs/HTML/Element/aside

http://html5doctor.com/understanding-aside/

Subscribe our blog if you want to see more posts like this :)


Switching to Custom domain effects existing backlinks ?

There are hundreds of questions in one's mind when he is going to change his blogspot or wordpress domain to their own custom domain.One of the most common question is about backlink, backlink is important for SEO and Pagerank, so this may always be a concern but is it really affects your backlinks ?

When switching to a new custom domain then it's obvious that you will see downfall of your traffic and believe me it's normal, you will again see your traffic back to normal when your page got crawled by search engine bots. But what about backlinks, will your old backlinks will be yet credited and help your SEO and pagerank ?

The answer to this question is NO, switching to custom domain doesn't affect your backlinks in any way as long as you are redirecting your blog to the custom domain from server side. The reason is that search engine bots not only sees the URL but get into the link and indexed the link redirected when visits that link.

It's clear that if you are pointing your blog to your custom domain then the backlinks of your .blogspot domain will even work for your custom domain, cause the bot is also redirected to the custom domain when it's crawling the url.

It means you never need to worry about the backlinks, it's obvious that you will see backlinks count fluctuated in Alexa because their system is different, Alexa is not a search engine bot so that doesn't even matter for you. I suggest you to use your .blogspot domain whenever linking from sites, that will make sure that if you again switch the domain to different domain name then the backlinks would work.

It will also not effect your pagerank, your pagerank will also be the same when Google crawls  your blog it will see your new custom domain after the redirection and that's when your pagerank will be also transferred on your new domain

It was that simple, this was a small post to let blogger and other users on subdomain provided by the service,  so it's safe for your search ranks and PR to get a custom on your blog as long as the redirection is made on server side.

  

'Dream blog' - 2nd version of best SEO template

This is the second version of our best SEO template called 'Dream Blog', we got positive feedback about 'Dream Blog' template and also got some suggestion regarding the Template. This new version is more better than the older one but both works great for SEO.
We decided to launch 'Dream blog' as a free template so that everyone can enjoy the benefit of a SEO friendly template.
Preview Template Download - Server 1 Download - Server 2

Downloading and installing

Extracting the files : You can find the .xml file inside the RAR file you can download in the above links, use WinRAR program to easily extract files from the zip file.
Installing the template : The first step to install 'Dream blog v2' template on your blog, you have to upload the xml file on your template section, check this tutorial.


Note : Always Backup your template when you try to make any changes to your blogs Template.

About the dreamblog-V2-CSS.css file

Once you extract the template, you will see two text file, one xml (the template) and a CSS file named dreamblog-V2-CSS.css, the CSS file contains overall CSS code to design the template and if it's not linked in the template then your blog will have no good style with 'Dream blog' template.


I am already hosting the CSS file on dropbox and it's where the CSS file is downloaded on your template, it means that i can make changes in design by applying CSS style on the CSS file hosted on dropbox anytime. You may host the CSS file on your own server or dropbox so that you have control on it or if it ever gets deleted on my dropbox then you will have the CSS file with you and you can use it yourself.


You can find the link in the template and replace it with your link to the hosted CSS file on your server of hosting service. Replace this link :
http://dl.dropbox.com/u/93278694/dreamblog-V2-CSS.css
Go to Blogger Dashboard > Template > Edit HTML > Use CTRL+F to find the link and then replace it with your own link.

Features

This template is second version of our 'Dream Blog' and many features are same as the previous one. Because this is a new version you will see lot more improvements and new features, just a quicklist of the features. 
  1. Best SEO template for blogger cause we kept the template as simple as possible to make your blog load faster and that helps in improving SEO.
  2. The structure of the template is well formed and that makes the template interface better and gives it more usability
  3. CSS file is hosted externally and that's 
  4. New CSS3 scroll bar in this template is what makes it a 2012 template, the scrollbar only works in Webkit browsers, other browsers don't support styles for scrollbars. 
  5. Content on this template is easier to understand
  6. Used small picture for the full page background to improve page load, you can get more background designs here
  7. Compact header to give more room to the contents
  8. SEO friendly page title i.e  Post Title | Blog title
  9. Gadget separated in different boxes.
  10. Search box at the top, visitors can search for the content they are looking for without scrolling throughout the page. 
  11. Post Author info and post timestamp added under the post title
  12. Customized Lightbox, giving the default blogger lightbox a brand new look.Customize it yourself using this tutorial
  13. Previous post link below the post title 
  14. Jump to comment button at bottom right corner of the page for quick reach to the comment section 
These were some specification of the template. 

Add more stuffs

Just as the previous template, this template also allows you to add new features in blog if they are well formed. We have just named our blog a blogger gadget resource, so here are some of our gadgets which will look good in the 'Dream blog v2' Template, some have been already added so check before you add.
  1. Hover effect on images in posts - Blogger
  2. Under line gadgets title in Blogger
  3. Hover effect and Expandable Search box for Blogger
  4. Advanced Feedburner Subscription gadget for Blogger
  5. Show/Hide effect for Gadgets in Blogger with JQuery
  6. Good looking search bar for your blog or website

Your feedback and suggestions

Now we want to know about our template by you. If you have any suggestion regarding the template then do comment in with your query or the message. We will love to hear from you.

Focus on SEO or the Content ?

To become a professional blogger you also need to have good numbers of readers on your blog which is only possible when you get traffic through search engines but do you only focus on optimizing your search engine rankings ? Let's learn why content is prior.
What i see in most of the case of unsuccesful blogging is that they don't care about the content but one thing that they have heard is SEO and start playing tricks to get good ranks in search engines. In 3 or 4 months when some starts their blogging career they start worrying about their search engine rankings and search internet for an easy and fast way to improve their rankings but is there an easy way to achieve a successful blogging career ? Improving search ranks is only what you have to do to become popular ?

This is what i notice in almost every new bloggers, there are yet some smart folks having good knowledge of how blogging works and have some strong strategies. But in many newbies some things are common which you can read below

Start blogging for Money ?

Everyday i see many peoples starting a blog because they heard somewhere that people can earn money with blogging. Blogging is surely a good way to earn money but it's not only about earning, it's about your writting skills, your knowledge and your consistency. And most of those who start a tech blog assume that tech blogging can give them some good amount of $$$ but do you think that someone will get money for doing nothing.

How they start blogging is that make a blog and title it something very attractive but when you open it you will see some stupid nonsense post either copied or written very poorly. So that concludes that starting a blog doesn't actually gives you a guaranteed license to earn money through it.If you are new then don't worry, everyone was new when they started blogging, but they are at a stage where you can also be, but put your hardwork and knowledge to write on your blog.

Tip for tech bloggers : Just don't post content which is common to everyone, for example 'How to lock your computer', 'How to extract RAR files' these post will never help you cause you will find thousands of result before you result posted back in 2006 or earlier. You have to find your own great idea and post on it so it's new to everyone and you get more readers.

Does only tech bloggers earn money ?

The internet itself is a tech stuff and you will see more blogs on topics like technology and computer but it's not true if you say that only tech bloggers earns money and have good number of readers. Blogging is not only about tech but it covers a vast list of category. There are bloggers in photography field earning more than a tech bloggers does, the reason is that most of the people on internet are not tech savvy and they just want to leave the back end of the internet uknown, they want to have fun seeing photographs, reading recipes, learning about baby sitting and etc. Although internet was developed to serve people information in any field without picking up a heavy book from libary. But when someone sits on internet whole day and with their little knowledge about computer they just think that they are good in computers and there knowledge and ideas are truly new but the knowledge is yet common. You can't learn anything just by using it practically, read books about it and also read articles and tutorials yourself.

If you ask me then i would say that i didn't learnt web designing just by having some little knowledge about HTML or CSS etc, before i started the blog I had put over 3 month to learn more about it, and every day i gave about 7 hours to read about web languages and that's how i am a web designer now and blogging on it.

What should i do ?

After reading both the sections you may have come to know that blogging is easy if you are actually interested in it, not only tech but the topic you are genius in. But whichever topic you choose one thing is common, hardwork and patience. Blogging is not like do it twice a week and then leave it, you may post as much as you can. There's no specific amount of post you have to make to get a better readership, the only thing here matters is your content and is it a quality content. Search engines is not the most prior thing, first priority is your content and when you have contents and quality contents on your blog then search engines is always happy to index your blog into their rankings and maybe you could get better ranks and when you keep doing it then you are going to become a star in this blogosphere. What i am saying to do you is give time to blogging and don't stop blogging cause you aren't getting good search rankings even after 3 or 4 months of your blogging, i think that even 1 year is not enough to become an established blogger and earn good reputation among other bloggers of your field.

Overall SEO doesn't even matter in he first three months of your blog, in the meantime create genuine content which is supposed to attract peoples and when you have plenty of genuine content on your blog then you can focus on SEO to optimize the rankings of your content in the search engines rankings. If you follow this strategy then successfully blogging becomes enjoyable and you will love your blog and your readers

How to publish your content to a larger audience?

How frustrating it's when you create a post after hardwork of hours but what you see is that not a single pageview on it ! That makes us feel that our work is worth nothing even we created something that should reach peoples. 

In Blogging having the writing skills is important but the strategies you need to make your blog reach much bigger audience is also compulsory, as you don't want your published content to go unseen. SEO is essential for getting a good reputation in Google search ranks and that's what SEO is all about.

But the problem with SEO is that it needs patience and many bloggers can wait to see the best result, all they want is fast. If you are in such hurry then SEO is not for you, i mean you may try to optimize your search engine rankings but just because you want keep patience then there are some graceful methods to increase your traffic with readership if you have quality contents on your blog or website.

Fortunately, Google is not the only way to get traffic for your blog, Google is undoubtedly the major source of traffic for any website but what about less established blogs, don't they deserve to get readership when they are having tons of quality contents.

Taking help of social networks

The idea is to create your own community in big social network such as Pinterest or Facebook, it's easy to get in touch with people interested in the field you are blogging and then you may share your contents with them. But let them also expose their own content to you and other members of the community, don't just let others read your blog but do read other blogs as they may contain information which you will find useful in future.
Digg and Stumble Upon are two main ways to target your post mainly and publish it to the users of stumble upon and Digg. These sites work like a bookmarking tool. You will get some small numbers of readers at start but as you keep doing it you will see your blog being read by more and more people. 

Guest posting

Guest posting on well established blog can give you a good number of readers for your blog, as when you publish your genuine and quality content on other blogs, you get subscribers of the blog as readers for you post and most guest blog posting enabled sites, they offer to give backlinks which is again good for SEO.
If your blog is new then don't publish your best content on your blog, keep patience and find a big blog in the field you write and contact it's owner for guest post submission. Most of the blogs who offer guest post entry have a page for it which you can find in links on the webpage.

What's your tip ?

Don't forget to tell us your idea about increasing traffic and readership, drop your precious comments. 

How fast page speed can improve your search ranks

As you know how serious Google is about content and it's genuineness but Google also takes page load speed of any website as an important factor in ranking pages.
There can be very long explanations on how to improve page load speed and it's importance but i will keep this post as short as possible for users to read this easily.

I am aware of page load speed from the starting but didn't took it too serious but when started Stramaxon, it was important for me to apply tips on my blog first before advising others and that has improved my blog's loading time much better. It's is said that the first 3 second is enough for a visitor to decide whether it's worth visiting this page or not.



The art of keeping your blog less heavy but yet giving your users the ability to perform overall actions which is important for increasing your readership is what i have used in my blog. Before you proceed to improve your site speed check your page load ranking in this Page load Test. Results are in # out of 100, for my blog's homepage its 91 out of 100 and for post pages it was 87 due to loading of Syntax Highlighter's Java Scripts.    

How to improve page load

Maintaining your contents and displaying them in good way is the key to fast page load. Content is important along with it's presentation but don't use such heavy code blocks to make your blog an eye candy, keeping it simple is the best agenda.


You get the overall suggestion page load speed test page itself but these some basic tips might help you to get to the right way.


  • Use image sprites for smaller images instead of serving it separately, that will lower down the request from server
  • Don't use a big picture for your background image,instead use a 128*128 picture with repeat property to make it full size background. 
  • Use external stylesheet for CSS styles, that will render the page first and then it's style.  
  • Don't use or keep unnecessary plugins for gadgets which is in no use, because gadgets and plugins load their own files
  • Use social media gadgets as less as possible
  • Keep JavaScripts below the CSS stylesheets or code blocks
  • Avoid the use of @import property of CSS to load fonts or other stylsheets
These are some common tips that you must follow to optimize user experience of your visitors and most importantly get good ranks in Google search results.So, take your page loading time as an important aspect and give it some values, it can decide your traffic.   

Your opinions 

We can't just keep from hearing from you guys, we are sure that you have some extra tips on improving page load speed and share your expertise. Also tell us how this post helped you and what changes we need to make in this post to make it more friendly to the audience. 

What to do with post which is not quality content posted back in past

Everything has a start and same for a blog and a blogger. When you start a blog you are way new to create optimized content on your site and you end up writing post that even you don't think it's up to the mark when you have reached the next stage of your blogging career.
When you are concerned that your knowledge about the topic you write is now improved plus your writing skills are also polished and you started creating information and quality contents which is good for search engine optimization. But when you look at your previous works or post even you aren't satisfied with it, the reason is that you are now more sensitive about quality in your contents and when you were new you didn't thought much about it.

What action you should take ?

But the question here pops up is what should you do with it ? In many online forums i have seen people stating that they just delete their quality content posted back in past when they were new to blogging.But why one would want to delete their post which is not too quality content. Because of SEO ? I don't think that your blog will be affected as long as you have your own content. So, when it comes to decide to take an option then i must say don't delete it.


Instead of deleting make it quality content by adding more information and correcting any errors in the post. This is more SEO friendly than deleting your post for a reason that's just a myth.


Even if you have some off topic post in your archives, off topic just means that having contents which is not suitable with the topic your blog is on, for example having a post called 'Tips on dressing style' in a blog which's main topic is Technology ? That seems funny but you can keep it as well, your readers would love to read what their hero had written in their past and you will be delighted with your reader's feeback.

Your views?

We have expressed our thought and now it's time for you to start the discussion or get into the discussion by commenting. 

Is your blogger blog owned by Google ?

I am a Blogger user from start and have been using Blogger for more than 2 years. Blogging is easy with Blogger but there's a fiction that don't have any base.
There are numbers of misleading and invalid facts about Blogger and it's usability. The most common myth is that your blogger blog is owned by Google not you and it can be deleted at any time. I have noticed that most of them who think believe this is the truth are WordPress users. Same with some services which don't accept blogger blogs at all because of these fictions. When someone predicate that my blog is not owned by me, I just reply back to them if their blog is really their's (they don't own the server).

I am not pointing that all WordPress users presume this myth but want to tell every person that's it's nothing than a deception. The only base on which people are shouting that blogger blogs aren't owned by it's said owner is that files of your blogger blogs are stored on a super fast, secure and free of cost server.

Blogger don't give it's user the access to databases or server that are important for server side scripting such as PHP or MySql etc. And I don't think that it's not a minus point of blogger but a plus point, as we don't have direct access to it's server databases, the chances of getting our blog suddenly down is way too less than with other open source CMS such as WordPress where a one line mistake of code in your databases can cause your website to be down and that's what most WordPress users have to experience.

But if we compare the hosting of Google free super fast, secure CDN with your paid hosting then you decide which is better ? I don't think that any server is worth to be compared with Google's CDN. And who knows when your paid hosting server gives you a heart attack by erasing your files anonymously.

Or if the topic is that content is not owned by you then don't you have the option to backup your contents ? Blogger users have easy option to backup their content files and with that they can move their blog anywhere they want, so you should stop believing these myths.
Open source CMS like Wordpress are never secure, if you take an example of how Amit Agarwal's Blog was deleted by hackers. It was easy for hackers to delete Amit's databases from his server because of easy access to databases files on server and MySQL injection was easier because of not too secure server and this is one of the reason why government sites are easily hacked by hackers. Other reasons can be that they were not on Google server.

As for deletion of blog from Blogger then it's obvious if you violate the terms&condition of any service then you are supposed to get kicked out from it. Especially when it comes to a big name like Google, Blogger.

Are you proud that Google can't delete your contents but can delete a blog contents on Blogger ? Then you are living in a world of darkness, Google is where you are supposed to get visitors from to your blog or website and if Google wants they can shove you out as well by banning your website and stop indexing it.

If you are a blogger user then never feel alone I am also a blogger user :) and never believe these myths. And I think other who used to think that blogger blogs are actually owned by Google are now realizing what's truth.

To become a pro-blogger you should be same with every CMS. As your reader's don't want to know what CMS you use, what they want is content. Focus on content.


Mohammad Mustafa Ahmedzai's post on MyBloggerTricks have inspired me to write this article.     

Blogging without fear

Blogging is not an easy work. Although it's not even a work but if you want your blogging career to be successful then it's difficult to get to the top. 

While we talk about blogging, it's only written work but also represents you. You are what you write, and writing more is always beneficial for any blogger as it exposes more to your audience. But many bloggers start blogs and posts 2 or more post daily but after a couple of week you will see them publishing no work of them. This is because they become more sensitive about their audience and fear to publish articles or blog posts even if it's good.

What happens is that you become more conscious about your content and start thinking about would your readers like to read this post ? Is this post complete ?

These are the questions which pops up into a confused blogger mind. You may care about your content and make it as beautiful you can but when it gets to the publishing don't fear to publish it to your readers just because you think your content is not up to the mark. I am sure you won't lose any readers just because of it.

But remember to keep your content informative, then leave it on your readers and see their feedback. If the content was actually not up to the mark then you will get some precious advice from your readers to improve it and that's how Blogging is done. Success in blogging is sum of patience, hardwork and knowledge. These three elements will make your blog career a heaven for your readers.

And that's how i am getting up with the help of my readers and if you also like this post then share and subscribe to our email newsletter for more professional and unprofessional tips on blogging. Or check the existing articles.    

'Dream Blog' best SEO friendly Blogger Template free

99% of Templates in Blogger aren't that SEO friendly so I thought of launching my own template to let other bloggers use it. This template is one of the best template in Blogger because it doesn't use much images for backgrounds and that makes your blog load faster. There are more other features of this template. 
SEO templates in WordPress are sold for more than $70, because they are worth it. But no one has made a start to make SEO templates in Blogger, but for the good of blogger users we are launching this template for free and everyone can use it.

First of all take the Demo and Download links and then read the features.
Preview Template Download - Server 1 Download - Server 2

Buy the new Responsive Blogger Template - Reiulanus Template

Downloading and installing

Extracting the files : The .xml template are inside the RAR file in download links. You have to extract the files with the help of WinRar program.
Installing the template : Check this tutorial for an easy way to upload this new template to your blogger blog. But do remember to backup your template before uploading the new one.    

Features

The features in this template are unlimited and awesome. I am sure you haven't seen any such template for Blogger. Although i thought of adding a quick list of features available in the template.
  1. The template is completely SEO friendly, doesn't leave any bad effect on your blog's content (which you don't find in other blogger template)
  2. 'Dream blog' Template is compatible for Google adsense ads and you can place it anywhere in the template or layout. 
  3. More room for the content, this template will give more priority to the content rather than sidebar gadgets. As said 'Content is king' so the king is at a easily noticeable area.
  4. Social shares are at the bottom of the post so your readers can share the content right after reading it.
  5. Template is clean and easy to navigate. Navigation in template is an important thing in blog and to improve quality of user interface the navigation is made easy. 
  6. No much confusions, the links are it correct places and doesn't create confusion to the visitors.
  7. Pages are well structured
  8. The beautiful search box gives it a more professional look, you have to edit some HTML in the search box to make it search your blog. This guide will help you. 
  9. Labels in the sidebar are vertical aligned and that makes the sidebar look more compact, it also saves space. 
  10. Blogger Comment design get's a new standard in this template, the new design is more easy to understand and also makes readers love to comment.  
  11. The posts are displayed separately in their own box which is again easy to understand. 
  12. 'Posted by' links and time-stamp are also designed well.
  13. Jump to comment button which is always at the bottom right corner in post pages, which takes anyone who clicks on it to the comment form. 
  14. Self created about me section in HTML. You have to edit the HTML in it to makes it look like yours.
  15. Template is independent and you can add more functionality such as subscribe box under post etc. You will find many resource which i publish every week.
  16. You can change whatever you want to change in template just by editing some CSS. But only play with it when you know what you are doing.  
  17. Less images used to design the template, it means fast loading site and fast page load means good search ranks for your blog. 
  18. Custom footer added in the template, if you want it to be removed then you can buy the rights from me just for $25
This is a quick list of the template's features. You can see how this template is user friendly and SEO friendly too.

Add more functions

This template gives you freedom of adding other Blogger functions of your choice. You can find some Blogger gadgets on this website also. Here's some of them
  1. Advanced Subscription box
  2. 'Next - Previous' buttons in a new design
  3. Blogger comment design like SYB
  4. Remove Blogger/G+ icon from About me gadgets
  5. Animated header in Blogger

Your Feedback

Do leave your comments about what changes needs to be made in this template, you can always suggest us something new to make this template the best. There can be small mistakes, if you find one then inform me.

If you want to get tips on hiring a rocking web designer then do read this article by Hannah Howard - Hiring website designers that rocks

If you want me to design your own template for under $45 then contact me on my email depy45631@gmail.com
    

    Guest blog post writing explained by Deepak Kamat

    Guest posting on blogs is very common among tech bloggers, thousands of new bloggers enter the blogosphere but most of them are completely unknown to what they may do when starting a blog. In this post you will learn how to create a good reputation and write guest post on big blogs.
    Guest blog posting is only a part of successful blogging career but it's important, not fully necessary but if you  feel that your blog is not making to what it should have been then i suggest you to start guest blog posting now.    

    Writing on small blogs

    From my personal experience, newbie blogger's don't seem to be interested in guest posting on smaller blogs with less establishment and there's where they make a huge mistake. Now you would be wondering about what loss you made in not writing blog post on smaller blogs? Then, think about other big blogs like shoutmeloud.com ,etc. Don't you want to become a Author on it ? Who don't want but let's come to the point, was that blog a well established one from the time of it's launch. Even it was in the list of small blogs but the guest author on those small blogs made it bigger and larger that now everyone wants their own place there.    

    Hardwork is another big thing

    Hardwork never goes in vain, hardwork with proper knowledge will surely take you to the success. When you write something, you don't write it because you want traffic to your site, you write it because it will some some people. The worst thing i ever hear from a wannabe tech blogger is 'how do i earn money online', but they assume that just starting a blog will earn them some money.
    To increase their number of posts on their blog they usually copy from other websites but you know that's bad.

    But here Guest blog posting helps you if you have talent, no one can make themselves popular, hardwork is what others see. So if you just started a blog and want couple of loyal followers then start working hard and guest post on other blogs.

    No one likes laziness 

    Would you like to read a blog with no regular content ? Blogging is not only about writing on your website but also reading what others write, but no one likes to read a blog with irregular posts. That's in your case also, if you want your readers to come back and want the search engines to love your website then consistency is must. When you start blogging you can't call yourself a blogger. Blogger can post any where but the main aspect is that it should be helpful. So if you are even guest posting on other blogs then don't just publish one and leave it as it was a formality. Get into it ! Because internet is a place where you want express your thoughts without investing money.

    So whatever topic you blog on, just hit it. Once started never let it down. You can also submit us guest blog post on our email depy45631@gmail.com

    No one is reading my blog, should i stop posting ?

    Blogging is not a game, it's competition not between two, hundred or thousand people, you have to compete with Millions of bloggers having the same topics around the world. People who are new to blogging don't know what's the key to form your own audience.

    Every new bloggers have big expectation with their writings and the main reason most of the people start blogging is money via their posts. But they are not familiar with SEO, search engine is where you are supposed to get 99% of organic traffic.

    Most of them blogs once or twice a week and then forget it. Think if you are a reader on a blog and after some weeks you see that the blog is not updated or the blogger has stopped posting, then would you like to stay on the blog ?

    Even if you are getting 1 visitor in the whole day, then don't just give up because if you are getting 1 reader after posting one post, then if you keep posting you can make your audience larger and will get thousands of readers for your blog in a month or two.

    It's like, if you are expecting visitors then visitors might also have expectations from you, they want to read post on topics they enjoy reading. If any blog have good resources of Web designing i spend hours reading it and that's how you can attract your users. Choose your topic, and once you started don't make gap between your posts. Keep consistency and that's what Google or any search engine sees when ranking the search results.

    Never hesitate to share your views and ideas of your field with your readers. People come to your blog to read and if you keep your blog full of content then your visitors or readers might stay on your blog for hours.

    This tells you the importance of consistency, even if you aren't getting visitors keep posting and don't worry about visitors, once you have genuine and useful content on your blog you will see the increasing number of your readers and visitors. 

    Using small picture background for better Experience

    Most of new bloggers use big pictures for their thumbnail to illustrate their blog, the blog looks quite good but the main problem is loading time, even delay of micro seconds may cause low pagrank, speed matters alot in Pagerank. So read this to know how to prevent this.  

    Many new bloggers don't know the value of fast load speed of their blog, and without knowing anything about it they use big pictures for their blog background, i know design is important, but having pictures as background that will take time to load might make your load slow and also make it look unprofessional.


    Blogger's custom option gives you option for a large variety of pics that you can set as your background at the spot, but there's also option for you to upload your own picture for the blog background. If you use pictures from blogger's gallery then you and your visitors have to suffer  
    slow loading time, that no one likes. If you see my background picture on this blog, you can see that i have only used a 127*127 picture that's only 8kb in size, which will load in seconds, but if i choose a big picture it would have taken some time to first load the background. 


    For this post i have prepared some good background pictures that you would like to apply on your blog or website. 



    These photos are all for you, if you request me to make a background to fit your needs please feel free to drop your comments. I would like to design a background for you. 


    To tell the world that we are with you, use our 'Link to us' code on the right sidebar to connect with us publicly. 

    Working with Google Webmaster Tools

    Webmaster is a Google's product, which is free and used by many website owners to manage their site on the web, and also to increase traffic. Learn more about Google Webmaster in this post.

    What's Google Webmaster

    Google webmaster is a a powerful tool with which millions of web site owners manage their  
    site and improve the ways your site is seen on search engines like e.g Google, Yahoo etc. 
    There are numerous tools available from Google, but Webmaster is one of the most powerful tool, because it's gives the owner of the website, the power to enhance their website their shelves, it's also give you accurate information like, how many times your website get's an impression with what search terms, these information are mandatory for the owner of the site to know more about how their site is being viewed by others, the owners can then try to put those keywords more in their later posts, which will again help to list the website on Google search page when that keyword is entered and searched. It shows how much time your website link has been clicked on  searching a particular keyword, and how many impression it got, shows on how many pages that particular keyword is on. These information are very useful if you want to improve your Google Page rank.

    Register on Google Webmaster

    After reading the above text you are now very excited to join webmaster tools, registering on it can be easily done, all you need is an valid email id. Go to http://google.com/webmaster when you are on the page, there will be a button on top saying 'Sign in to Webmaster Tool' click on it.If you have a Google account, you can login there with your Google account. If you don't have a Google account you will be redirected to the Google login page, because Webmaster is a tool from Google, it requires a Google account to register, but you can also register there with other email providers like yahoo, hotmail etc. to create a Google account. There will be a link saying 'Sign up for a new Google account'
    provide all required information you are done. 


    Registered? Add a site now

    To add a site in your Google Webmaster dashboard, you need to be logged in and need to have access to the server where you are hosting the website you want to Add. But if you don't have any paid hosted services, and running your blog on Blogspot or WordPress .etc , there's also way to add site to Webmaster. 

    So let's see how to ADD A SITE when you have a paid domain and hosting service.


  1. Log in to your Webmaster Tools, by going on Google Webmaster and click on 'Sign into Webmaster Tools' button on top of the page.

  2. On the dashboard there will be a button 'ADD A SITE' on top right corner, click on it and a popup will appear.

  3. Enter the URL of your website e.g  mywebsite.com, into the text area in the popup box and continue.

  4. Here come's the main thing, download the file, you can find the download link on the page where instruction are given. 

  5. Now go to your cPanel of your server, and upload the file you downloaded.

  6. Go to the Webmaster page you opened, and click on the verify button.
  7. For those who run their blog on blogger.




  8. Log in to your Webmaster Tools, by going on Google Webmaster and click on 'Sign into Webmaster Tools' button on top of the page.

  9. On the dashboard there will be a button 'ADD A SITE' on top right corner, click on it and a popup will appear.

  10. Enter the URL of your website e.g  mywebsite.com, into the text area in the popup box and continue.

  11. Click on Alternate methods, and check the "Add meta tag to your site's home page", I prefer this because this is the easiest one.

  12. Below a code will appear i.e   , copy the code that you got there.

  13. After copying the code, go to Blogger Dashboard -> Template -> Edit HTML 

  14. Hit CTRL+F and find , and paste the code you copied just below 

  15. Save template, now go on the webmaster page, and click on verify, it will accept the site once they found the meta tag in HTML of the webpage.
    This verification method makes easy to website owner to verify their site, even if they are not too savvy in those types of thing.
    Tip :- Even if you have a paid hosted service, don't bother to download and upload the HTML file to the server, instead use the Meta Tag verification.

    You might also like :-