Showing posts with label Blogging. Show all posts

Where to Find Blogger App for iOS

If you have been looking for the Blogger app on your iOS device then you are out of luck. Blogger took down its official iOS app and stopped supporting it and its been a pretty while.



There are many Blogger users who needs to update and post to their blog on a regular basis, from their smartphone and it is very inconvenient without an app to do that. And especially now that smartphone users are the majority, Blogger lags behind in providing an official app, which is not a great thing for such a popular Blogging platform.

Straightforward answer to the question is that, Blogger does not have any official app for smartphones. That's the sad and bitter truth, the good news is that there are tons of other apps on the app store available as well as other workaround to access Blogger on phones.

Use Blogger with Chrome

If you use Chrome you can access the full desktop version dashboard of your blogger account directly on your phone. The UI is the same as it is on desktop browsers thus there is nothing new to learn to get started. 

Download Google Chrome browser on your iOS device, go to this page to download Google Chrome on your device. Set it up, sign-in with your Google account and you are good to go. 

Simply access https://www.blogger.com in Chrome and you will see all your blogs in the dashboard, from there on you can add new post, edit them and change blog settings if you wish. It is basically the same as use on a desktop, only on a relatively smaller screen. You need to get used to pinch-zoom in and out, it takes a while but it is worth it.

Other third party app 

We do not guarantee the performance and usability of these apps. Check the reviews before you try them.

BlogGo for Blogger 






BlogTouch Pro (for Blogspot Blogger) 





Right now there aren't a lot of high quality apps for Blogger in the app store, but these are the best based on user reviews.



If you have any questions regarding Blogger or these apps, do let us know in the comments below. 

Renaming "Older" and "Newer" Page Links in Blogger

Two years ago I wrote a post on hiding "Newer"/"Older" pagination links on Blogger and I was recently asked by a reader if it was possible to rename the links name, yes it is, and in this tutorial you are going to learn that the safe way.

Why is it the safe way, is there any side-effects? Not really, but this tutorial takes you into editing a few lines of code in your template so chances are that if you accidentally make any mistakes then the template might just broke and you have to fix that problem first to get your blog running again.





Back-up the Template

As a precautionary step make a backup of the template so that if anything goes wrong you can always revert it back to the current template: How To Backup Your Template

Two Ways To Do It

Before we start take note that we are presenting you two different ways to do this. The first method affects it from the root while the second one is like a layer, it renames it using JavaScript code when the page is loaded.

Difference? The first method internally changes the name to what you like, the JavaScript way is done on the front-end i.e when the page is loaded the text on the pagination links is internally still what it was but the JavaScript code executes and changes the document dynamically on the client-side to change the name.

#1 Method: By Replacing HTML/XML Codes

Note: We assume you are using not using a third-party template. Though this may work with third-party templates too but the naming convention is uncertain for them so we can't be sure if the code we are asking you to search exists in your template or not.

Follow the instructions carefully to rename the "Older" and "Newer" page links.

1. Go to your Blogger Dashboard -> Template -> Click on "Edit HTML" button to open the template code editor


2. Once the template editor opens put your cursor in the code area and then press CTRL+F/CMD+F and look for the following line by entering it in the search box

<b:includable id='nextprev'>

Searching for this line must bring up the matching line of code where we have to make the changes. If there is a triangle arrow on the left of the line in code editor then click on it to show the code inside it.



3. When you click on the triangle right arrow the code inside it will show up and it should be something like or may even be the exact.

<b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</span>
</b:if>

<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</span>
</b:if>

<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>

<b:if cond='data:mobileLinkUrl'>
<div class='blog-mobile-link'>
<a expr:href='data:mobileLinkUrl'><data:mobileLinkMsg/></a>
</div>
</b:if>
</div>
<div class='clear'/>
</b:includable>

4. Now look for <data:newerPageTitle/> and <data:olderPageTitle/> in the above code inside your Blogger template code editor. To make it easy we've highlighted the lines which contain these two codes.

<data:newerPageTitle/> - Generates the newer page link text, by default "Newer Post"/"Newer Posts" for post page and index/archive pages respectively.

<data:olderPageTitle/> - Generates the older page link text, by default "Older Post"/"Older Posts" for post page and index/archive pages respectively.

Replace each with the text you want in place of it. For example suppose I want "Previously Written!" & "Next For Read!" to replace the default text then my code would look something like this.

a. For "Older" page link I would replace the 2nd highlighted part with this:

<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'>Previously Written!</a>

b. For "Newer" page link the edit on the 1st highlighted part in the main code above would be this

<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'>Next for Read!</a>

Use your own text you want to replace the default pagination link text and then save the template. If you did it right then the changes must appear on the blog like this:


#2 Method: Using JavaScript

This doesn't require much edits and is also easily revertible. But this is just like a layer, while the actual text that was generated during the page was still the default one, this JavaScript changes the DOM to the change the text inside the specific page links.

<script type='text/javascript'>
function changePageLinkText(a, b) {
document.getElementById("blog-pager-older-link").children[0].innerText = b;
document.getElementById("blog-pager-newer-link").children[0].innerText = a;
}
document.addEventListener("DOMContentLoaded", function() {
var newerText = "Enter Newer Text"; // Replace [Enter Newer Text] with your own text
var olderText = "Enter Older Text"; // Replace [Enter Older Text] with your own text
changePageLinkText(newerText, olderText);
});
</script>

Replace the text "Enter Newer Text" and "Enter Older Text" with the text you want to appear in the corresponding links.

To place this code in the template, go to Blogger Dashboard -> Template -> Edit HTML -> Now press CTRL+F/CMD+F and search for </body> and place this immediately before it.

Now save the template and the text on the pagination links will change according to what you've set in the code. You can edit the variables in the JavaScript code anytime you like to change the text that appears.

Note: this may not work in some older browsers and also in browsers that turns off JavaScript.

Adding AdSense Ad Inline With Post in Blogger

There are numerous tutorials and tips on increasing revenue on AdSense by using different ad placement techniques and practices, many of them work great, but Ads in the main body content is one of the most vital place.


Ads placed in post body can make a significant difference in the revenue but you have to do it wisely, it is where the main focus of a site's visitor is for most of the time during their visit so it is important to make sure the experience is not obstructed for the visitor due to the ads.

In this tutorial you will learn a simple way to add AdSense ad in your post and have it display in a good manner that is by floating the ad to a direction and have the paragraphs wrap around it.

Set Things Up

You can simply paste an Ad code in the post editor and the ads will appear but that isn't always what you need. How about floating it to the left or the right so the text wraps around it? We are going to learn just that by using simple markup and CSS so you can selectively add the Ads to any post at the best position you like.

Add The CSS Styles

We will get onto the main part where you have to work with the ad codes later before that let's set a few lines of CSS that is going to complement the box which is going to contain your Ad. This tutorial is meant for square ads only.

/* By default it floats to left */
.ad-container {
float: left;
padding: 10px 0;
padding-right: 10px;
}

/* For ads floating to the right */
.ad-container.right {
float: right;
padding-left: 10px;
padding-right: 0;
}

/* Centered Box */
.ad-container.center {
float: none;
padding: 10px 10px;
text-align: center;
}

/* Clearing floats */
.ad-container br {display: none;}
.ad-container:after, .ad-container:before {
content: "";
display: block;
clear: both;
}

If you are not sure where to add this CSS code please check the guide on adding CSS to a Blogger blog

The HTML Container

What does this do? Well, you can, as I already mentioned, paste the Ad Unit's code provided by AdSense in the HTML mode in the post and the ad will start appearing but you get a very little and not-an-easy option to position the ad as you like. With this you can.

Copy the following code and have it saved in your favorite text editor so you can use it in the next steps easily.
<div class="ad-container">
<!-- Paste your code here -->
</div>

The HTML markup is simple, just put your AdSense code between the first and the last line i.e where <!-- Paste your code --> is and that is it.

You need to know a small thing if you want to have the ad centered to floated to the right as by default it floats to the left. Check the following line of codes trimmed from the HTML markup provided above.

<div class="ad-container center">
We added the keyword "center" in side the class="" attribute. If you want the ad to appear centered then you have to add it too to your markup.

<div class="ad-container right">
In case you need it on the right just add "right" in there and that's it. Simple!

Once you have this markup ready with your AdSense Ad code you may proceed to the new steps that guides you through adding it to the post through post editor.

Put The Final Code In Post

By now we assume that you have finalized the code i.e edited the markup and included your ad unit code where described.

To put it into your post click on the "HTML" button when you are in the post editor



After switching to the HTML mode paste your code around the text where you want it to appear. Mostly ads are put at the start of the blog post but if you wish you can put anywhere for example at a position where you know the readers are going to spend most time reading or focusing. 

Make sure that when you paste the code anywhere in the post in HTML mode you paste it outside a <span> or <div> tag that may be there to contain some other text or paragraph/image.

For any further help on this you may use the comment box below to let me know. 

Drive Interest to Your Blog

Nowadays, almost everyone has their own blog whether for personal or business purposes. They can just post about anything from what they are doing in their career to what they do in their personal life. There are just too many blogs out there and people cannot possibly keep up with each and every one of them. It is similar to having a hundred conversations at once and this is not possible to do.

If you are the owner of a blog and you want people to read it, you want to make it interesting first. So how do you make your own blog interesting in a way that the traffic that it generates will keep coming back for more?

Avoid Writing About Yourself

Most of the B2B blogs by companies have dominant information regarding their products and services, updates, upgrades and benefits. Almost all of us bloggers have made this kind of content, and while some of do belong in a blog, it should just be sprinkled as a topping lightly and nothing more. There is no one outside of your business that is going to make it a point to have your self-focused content read all the time.

That is why if you are blogging not based primarily on your products or services, then start going for your target prospects instead and what they want to see. Identify the topics in this area that you know something of and provide information that you think will benefit your customers and help better understand what your company does.

Commit to a Schedule

Being consistent in posting regularly and having a schedule will keep your blog up to date. Even if you are just publishing short posts, make it a habit that you need to accomplish and stick to this. If you are more concentrated on the usual topics that you are blogging about, you can just save these interesting topics that you find over time.

Have Your Own Point of View

Being opinionated even if it is going to turn some people off is important when blogging. Try to critique something if you have an expertise in an area. Have your own strong point of view even if the topic is controversial. It is important that you define your own company’s voice in the community and this is going to prove essential when you are creating content that you want people to discuss and share with each other.

Center Your Content in Factual Data

It is the backbone of a lot of popular blogs to have solid information that can be placed in visual form. One of the best sources for interesting data that you can center on in your blog posts is through surveys and polls. If you do not have the time to spare in collecting data for your own needs, there are a lot of public sources that you can utilize in order to obtain the data for you to draw from. Although the data that you present may not be original, placing this in a chart will add value that readers are going to appreciate.

The Author

Norris Lasay is a writer on business, the high speed Internet and broadband at Broadband Expert. Norris spends his free time contributing ideas for other blogs related to these niches.

Seperated Box for Gadgets in Blogger

Blogging is about the content and it's most important thing you need on your blog but design matters too for your readers and visitors to be on the page for a longer time. This design tutorial will teach you to add designed borders around your gadgets to make it more beautiful on your blog.

Why is it important to give a more sleek look to your gadgets, they aren't that important for your visibility in search engines but if you want your users to find it easy to read your blog then you must give good looks and structure to your aside contents.
In many blogger templates, gadgets are in their own separated boxes and in other's they are not, but they won't look that good without a little more touch with CSS. It works the best when you don't want to have titles for your gadgets but yet want them to look as different gadgets on the page.

Add borders to gadgets

Giving clean and good looking borders to a gadget on Blogger don't takes more than 2 minutes. You just need the CSS for it, which i will provide in the tutorial and the instructions to add it. I have added two different effects, check it below.

Normal borders

If you don't want a simple but yet eye catching borders around your gadgets then the CSS below will give you what you want. - See the Demo
.sidebar .widget {
border:3px dashed black;
padding:10px;
}
The CSS above will give a black dashed border of 3px width on all your gadgets/widget on the sidebar. Changes can be made in the CSS code.

  1. There are three different parts in the border property.The first value which is 3px is the width of the border.In the middle it's the type of border we will use, currently it's dashed, they can be solid | dashed | dotted | double | groove | ridge | inset | outset .Last is the color, you can change the color with the help of our color picker.
  2. Padding is the space between your gadget content and the borders. 

Funky hover border effects

This one is little different, little more funky and responsive. Can react on user movements over the gadgets, when you mouse over the gadget the borders will appear else it will remain without border. What i like the most in this is that it reacts on user interaction. CSS for this border design is below - See the demo
.sidebar .widget {
border:3px dashed transparent;
padding:10px;
-webkit-transition:all 0.8s ease;
-moz-transition:all 0.8s;
-ms-transition:all 0.8s;
-o-transition:all 0.8s;
}
.sidebar .widget:hover {
border:3px dashed black;
padding:10px;
}
The first CSS style block is what the gadget should appear when it's not being hovered and the other block is for styles when it's being hovered.

Add CSS to Blogger

Check the link below to know how add CSS to a Blogger blog.
http://www.stramaxon.com/2012/03/how-to-add-css-to-your-blogger-blog.html

That's it, once you apply the CSS check your blog with the border designs, hope you like it and your readers will like it too. Please comment for feedback.

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. 

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.    

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

Anonymous comments on Blogs, beware it's spam

Spam, some hates this word and some who are used to spam loves 'spam'. I had previously written some articles on referral spam, which helped thousand of people to understand what is it and avoid it. But now when it's fading out a different spam took over. 
Comments in every blog is a way to give your feedback on the post and it's very useful. But what will we do when it's also spammed. Imagine how your blog will look with full of spam comments with random links into it. Almost all types of spam's target is to make the victim click on their link, but as always never click on those links.


Spams comments done by 'human' is understandable but in this case it doesn't seems like these comments spams are being done by a human. These new spammers are very smart, they only post one comment on the post whenever it's published. The comment contains some self praising sentences with a link to a mysterious site irrelevant to your blog topic.


I noticed that they post such comments that readers would want to visit the link in curiosity. As an example you can see this email notification (can't show the actual comment because i am using disqus)


     
You wondering how can i say that these comments are made by computer bots ? I am using Disqus comment system in my blog but these spam comments are yet made on blogger comments system. So this concludes that the comments are automated and done by a bot but behind all these there must be a human at least.

Be safe and avoid these comments and links in it, you may also mark these comments as spam to help blogger understand that comments with the links in it are spam. Also teach your readers to mark these types of comments as spam.

To keep our blogosphere clean we need to fight with these spammy things which is common now, use your common sense and just take actions that may not harm you. 

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. 

Earn money online by writing

Today internet is a huge medium for many people to earn money online, and today i will highlight one of the easiest way to earn money online, writing!

Many people today earn money online and everyone is allowed to earn money online if they have talent and knowledge. There are yet many other ways to earn money online other than writing such as cyber-squatting (crime) and other spamming ideas, which is not good, earning money with your talent is always good and you gain reputation.

Most people with good knowledge of their fields writes about it on their blog, people with similar interest reads it and enjoys, and the advertisement displayed on their blogs/website make them earn money. If you are good in something, then you might write blogs on it.

But the problem is you have to wait and keep patience as it needs contents on your blog to be able to earn more online, it would take time for you and your blog attract readers, so it's good way but not suitable for people who want fast money.

iWriter.com is a something that you are looking for, it's based on content writing. iWriter will let you make money just for writing about a specific topic, you are not free to write content on your own topic, other people who wants articles for their blog or website offer other writers on iWriter to write for them, if you write something that the Client loved and want it on their website or blog etc. you will be paid money for it, even if you write 10 articles perday and 5 got approved then you are in good profit. Along with this you can earn money also by starting a blog on side and also write on iWriter. 

The art of writing in very precious and even if you have full knowledge about something but you will need the art of writing, so you have to work hard on it also. If you think you are good then don't just let you talent go wasted, use it.

You get paid only for what you deserve so hardwork is the most important thing, people won't just give money to someone for what they don't deserve even you, yet many people ask me 'how to earn money' online and i answer them 'with hardwork and patience' whatever you do or write like a fashion blog, tech blog or etc. you have to put your hardwork into it to get the fruit. You have to take time to learn about it and then write something.

 

Print your blog to a Book

Most people blog about their daily life, babies, marriage photos and more other things that they want as a memory, these types of Blogs are just like a diary that's everyone to read, but reading it online and on a book is a huge difference. Even internet is a modern tool for modern generation but people yet love Books more. 

Whatever your blog for but printing it as a book is great, you can share your memories with your children and their children, with books and anyone would love to print their blog as a book.

Blog2Print is a great tool/service for Printing a Blog as Book, it's affordable and very easy to use. Enter your blog address in the the input area and start with the first step to Print your BlogBook 



print a blog to book

Click on Print My Blog button to get started, now it will open a page where you have to make all required settings to print your blog to a Book, you can set your own photo on cover and backcover pages and Continue.

The price is affordable, if we compare the printing quality we will find the prices very low, the price is $14.95 for 20 Pages book and extra pages are 35 cents. Who don't want to get their blog into a book, you will have all your memories in your book and you can show it to anyone, anytime.

Hope you liked this post, do share and comments. And if you want regular updates then please subscribe to the blog.
   

How to make thumbnail and post excerpts display on homepage

This post will show how how to make post thumbnail and post excerpts (summary) on homepage to give your visitors more detailed view about your post, the post excerpts here are more beautiful and well designed in CSS, and your visitors will fall in love with these compact and cool looking thumbnails + excerpts. 

Adding pagebreak to every post is little difficult, everytime you have to set a page break for post to show a summary of post contents on homepage. But if you want it to be done automatically then you have to a little bit of hard work here also. As this post is going to make you play with lots of codes, so i will keep my sentences short.  


There was a time when i also used the page break to only show the summary of my posts on the homepage, but as i learned more about coding and some other web languages, i was able to sort it out and make it easier to show the summary of posts on homepage without adding the page break, but i yet add page breaks because i can't figure out how to run my code on Archive pages and whenever someone access my Archive page, they see post summary that is selected by me with the pagebreak option in the Post Editor.

Let's start

*Before we start, Backup your Template, that if anything went wrong you will have the working Template in your Desktop

*I have only used steps that can be used in New Blogger Interface, so please switch to New Blogger Interface if you don't want to get confused.


This is only the start, I will show you what and where the codes you have to put. We will first start with the HTML that will be used to display post summary.  Remember, if you have already messed up your code without even knowing what you doing then this might not work for you. So only use this tutorial if you have a clean template that's never been tampered. 

Go to your Blogger Dashboard > Template tab > Edit HTML > Proceed >
Now check mark on Expand Widgets Template.Now find press CTRL+F to open a browser inbuilt search bar and search for this line

<data:post.body/>

Now replace the above code with this code

<b:if cond='data:blog.pageType != &quot;index&quot;'>
          <b:if cond='data:post.snippet'>
          <b:if cond='data:post.thumbnailUrl'>
              <div class='Image thumb'>
                <img expr:src='data:post.thumbnailUrl'/>
              </div>
          </b:if>
            <data:post.snippet/>
          <b:else/>
            <data:post.body/>
          </b:if>
      <b:else/>
      <data:post.body/>
      </b:if>

Now save your template and check your Homepage once, if you have some post showing on your homepage, then it will display the excerpts and the thumbnail, but there might also be some post which will not show thumbnail, because pictures smaller than 300*300 dimension don't display with this code. 

Adding CSS to style the thumbnail

We will have to style it with CSS to make it look more like mine on my blog's homepage.
By adding the HTML code, we can only achieve to show thumbnail and post summary, now we will do more with it. We will add styles to make it look more professional.

Add this CSS to your Template - Go to Blogger Dashboard > Template > Customize > Advanced > Add CSS > In the input area paste this CSS and hit Apply to blog. 


.Image  
{
background: none repeat scroll 0 0 white;
border: 1px solid #CCC;
border-radius: 4px 4px 4px 4px;
box-shadow: 0 1px 1px rgba(0,0,0,0.15);
padding: 0px 0px 0px 0px;
float: right;
margin-left: 20px;
height: 72px !important;
-webkit-transition: background 1s;
}
.Image 
{
width: auto 9;
max-width: 100%;
height: auto;
}

Even now if you think it's not looking well, then you might check this post about how to remove existing shadow from pictures in Blogger 
Now refresh your blog homepage again to check if it's working or not. Check the below section if you want to do more with the thumbnail.



Link the thumbnail to the post

I have myself not used it but some people asked me how to do it and i asked them to wait for a post about it, so here it is. General Blogger users don't know about many of Blogger features, because it's not in GUI (graphical user interface) it's all in code and i love to work with these to experiment new things on Blogger.
How to make it work ? We just need to add some HTML code in the HTML code that we used first. Check this, we have just added an Anchor tag around the img tag to make that Image thumbnail a link to it's Blog post.

<b:if cond='data:blog.pageType != &quot;index&quot;'>
          <b:if cond='data:post.snippet'>
          <b:if cond='data:post.thumbnailUrl'>
              <div class='Image thumb'>
               <a expr:href='data:post.url'>
                <img expr:src='data:post.thumbnailUrl'/>
               </a>        
              </div>
          </b:if>
            <data:post.snippet/>
          <b:else/>
            <data:post.body/>
          </b:if>
      <b:else/>
      <data:post.body/>
      </b:if>

Just add the tag and done, every thumbnail of all post will link to it's posts automatically adding this tag to the HTML.

Now Enjoy your fully customized post thumbnail and give your visitors a good and pleasant experience that they will like to visit your site again. Good design is important but content is king.

If you want more tutorials from us then you can subscribe us on Feed, follow on GoogleFriend connect etc. Check the right sidebar to subscribe to Email Newsletter.

Related Post 

Check who +1 your blog post on Google+

This article will show you two ways to see who +1 your content on Google+, it always puts you in curiosity that who shared your contents, on Twitter we can easily see who tweeted the link but there's no easy way for a normal person to understand it their shelves so i have to write this post. 

There are two easy ways to know who have +1 your blog posts on Google+, one of my recent post got very popular and was shared,tweeted and +1 by people, so i was willing to know who +1 my blog post, and then i found these two methods which are easy for anyone to understand.

1. First i found a very simple trick but useful, using the search engine of Google+, it's a classic option to know who shared your blog post or links. 





You may just enter your blog posts title, not full title is needed, just put small part of your blog post title, i am here searching for my blog posts titled 'Beware of ww4(dot)savegco.antivir(dot)com' , so i just entered 'Savegco Antivir' in Google+ search box and it pops all the folks who +1 my blog post publicly.  Now you can switch between Recent and Best of to see more posts.

2. This method is simple too, not too much steps we have to follow, we can find people who did +1 to our post in our Blogger only. To do it, go to Blogger Dashboard > Click on Posts List and you will be able to see all the post there





You click here then the post list will appear, now there will +(Number of Shares) next to your Posts in the Post list, so to view who shared our Post on Google+ click on it and it will display the peoples who +1 your blog posts through the +1 button.



Now you know how to track down who +1 your blog post easily to know your online popularity. We suggest you to follow our blog for more post that helps blogger user to do more with blogger.  

White Blank box showing up on my Blog page - How to fix it?

Are you seeing blank white box on your blog or website page, those box looks too weird on the our website or blog, so this tutorial post will show what it is and how to remove it.
It all started to happen today, if you ask me what it is, my answer will be that it's a bug from facebook plugins code, Facebook is having some problems with their scripts, and thus blog page are showing iFrame on blog pages. The White box is a iframe, which is executed from the Facebook plugins code.


I came to know about this on Blogger Help Forum, i thought this problem was only of that user, but similar posts were posted by the users, then it was sure that it was problem of the Facebook plugins code after i examined the HTML code of the pages. The iframes are being usually showerd on top of the page. See this screenshot, it's from a blog that was facing the problem.


The Exact code, that's creating the problem is Facebook's JavaScript SDK, which we need to add to our HTML to show Facebook plugins, not it's gone buggy and creating iframes on Blogger. Removing it may remove the boxes (iframe) from the page, but also disable all Facebook plugin such as Like buttons, comments etc on the Blog. So we will use different method to remove it.

After seeing more blogs, i saw that the iframe is only showing on which the Facebook like box is being displayed. 


How to fix it?

Let's don't waste much time and get to the main point, how to hide it. To remove them permanently from template is little difficult, because it requires you to remove the code from your template which runs Facebook like button and other plugins, so we will hide it with CSS.


Fortunately, the two iframe have been classed, so we can easily hide it without any difficulties. Follow the Step-by-step instructions.

  1. Log into your Blogger dashboard
  2. Copy this small CSS code
    #fb_xdm_frame_http, #fb_xdm_frame_https {
    display:none !important;
    }


  • We have to add this CSS, so go to Template tab 




  • Click on Customize and then select Advanced tab




  • Scroll down, and click on Add CSS, you will then see a input area, just paste the CSS code there.



  • We only need the CSS code, the rest of the steps can be seen on my How to add CSS to your blogger tutorial

    If you think, this is not working then please post your Blog address in comments below, we will tryour best to help you.

      Access Edit HTML in Dynamic Views Template

      This short tutorial will show you how to access Edit HTML in dynamic views template

      Editing HTML in Dynamic Views template in Blogger is not possible without this hack, the Edit HTML button is always disabled if you are using the Dynamic views template. 


      So let's start with the hack, first open your Blogger Dashboard >> Template >> now have a look at your address bar, it will look like this (the blog id is different)


      http://www.blogger.com/blogger.g?blogID=8259823568185811984#template


      Replace blogger.g part with html , now it should look like this


      http://www.blogger.com/html?blogID=8259823568185811984#template


      You will be taken to the HTML edit of your blogger template which is Dynamic views, now you can add or remove HTML elements from your Dynamic views to fit your needs. 


      I found this trick on Yogaratnam N. aka Yoboy's blog 'Southern Speaker', thanks to him for this trick. 


      Related Post : Good looking search bar for Blogs

      Show more than 200 comments on Blogger post

      This tutorial will show you how to show more than 200 comments on Blogger posts
      This tutorial will give answers to questions like "Why my blog post only show 200 comments", "why can't i see more than 200 comments on my post" and etc.


      If you ever got over 200 comments on any of your blog post and then you see that you can't view more than 200 comments on that post and you worry about it. Blogger have no limits on number of comments on a post, but yet many people are facing this problem but can't sort out how to fix it. 


      I will show you how to allow to show more than 200 comments on a blog post, so that you can see everyone's feedback. The problem in this is that comments location is set to Embedded by default and Embedded comments only shows 200 comments, i will guide you through how to change embedded to something else that will show 200 comments.


      I will show step-by-step instruction with screenshot, so that you can understand it easily. There are different procedures for different version of blogger interface.
      Old Blogger InterfaceNew Blogger Interface

      Do it in New Blogger Interface

      We will do it fast, first of all you have to log into your Blogger account
      1. Now go to the Settings menu of your blog

      2. Click on 'Post and Comments' under 'Settings'

      3. Once you clicked on Post and Comments , you will see options about Comments and Posts, under Comments there you will see Comments Location
      4. You just have to change it from Embedded to Full Page or Popup Window to let your page show over 200 comments

      5. Now click on Save Settings on top of the page and preview it.


        Do it in Old Interface

        Let's see how to make it work in the old interface.
        1. Log into your Blogger account
        2. Click on Settings under the blog title on the home page
        3. Under Settings menu click on Comments

        4. Next to Comment Form Placement option select Full page or Popup Window

        5. Now Save Changes and done !
        Related Post : How to Switch off Word Verification for comments