Skip to main content

Posts

Showing posts from 2016

Adsense Page Level Ads Revenue Review

About Page Level Ads-  Page level ads are launched to monetize website on mobile devices mainly, Without changing page format and setup we can just put page level ads code and For Details Check these links AdSense Help- About Page-level ads How to set up Page-level ads Guide to testing Page-level ads Intially I thought that anchor ad is a type of sticky ad so I'll get much revenue from that but there was a minor increase in earning and I am disappointed with revenue and these ads doesn't works in all mobiles devices, in all browsers, in landscape mode of screen so I am kinda dissatisfied with this new ad type What do you think about page level ads ? Share your experience in comments :)

Add Chat Emoticons to Blogger Post, Make your post interactive

If you want to show your expression to your readers then you must try this Add Emoticons support in Blog and make your post more interactive :) :D :P ;)  Login to your Blogger account , Click on Template tab then Edit HTML of template Place this piece of code just before </head> tag <!-- To Show Emoticons in blogger --> <script src= 'http://codesroot.weebly.com/uploads/1/2/6/1/12611774/blogger-emoticons.js' type= 'text/javascript' /> Click on Save Template and use emoticons in your posts

Remove Blog Name from Post Title to increase traffic

By Default Blogger includes Blog Name before every post name and same appears in search results It affects Blog search appearance as it hides important keyword of post so to remove Blog name from post we have to do little change in Blogger Template Go to Blogger and click on Template tab then Edit HTML of template and find <title><data:blog.pageTitle/></title> Replace it with this code <!--To Remvove Blog Name from Each post title-Start--> <b:if cond= 'data:blog.pageType == &quot;index&quot;' > <title><data:blog.pageTitle/></title> <b:else/> <b:if cond= 'data:blog.pageType == &quot;static_page&quot;' > <title><data:blog.pageName/> | <data:blog.title/></title> <b:else/> <title><data:blog.pageName/></title> </b:if> </b:if> <!--To Remvove Blog Name from Each post title-End--> Save Template and you a...