Skip to main content

Posts

Showing posts with the label Blog

How to remove template view menu in dynamic blog template?

When we use dynamic blog template, it gives us options to select view from different dynamic blog templates. But, when one has decided to show his/her blog in one dynamic view template, why to change that in other template? It may reduce the appearance of the blog. So, one might chose to remove the option menu, so that changes can't be made and the effectiveness of the blog can be maintained.Here is the solution for the same. we need to add some css for removing the option menu. here are the steps to do that: In Your (New Design) Blogger Dashboard Click The Drop Down Menu For Your Blog > Choose Customize > Advanced > Add Css. Write the following code into the Css Section then click Apply To Blog. #Classic.ss, #views ul li:first-child , #Flipcard.ss, #views ul li:nth-child(2), #Magazine.ss, #views ul li:nth-child(3),  #Mosaic.ss, #views ul li:nth-child(4), #Sidebar.ss, #views ul li:nth-child(5), #Snapsnot.ss, #views ul li:nth-child(6), #Timeslide.ss

why one should blog?

why do you use facebook or google + or twitter? 1. first reason to start a blog is same as that, to be connected with friends. But it is a little different, when you are blogging, you are connected with like minded people. why should you be connected with like minded people? simple answer, to become more and more knowledgable in specific field or area. 2. how often do you write essay or something else? blog is one of the best way to improve your writing skills. via blog, one can express his/her thoughts. a discussion can be started with specific people via blog if they are connected. Result? your knowledge of the topic will be increased. 3. do you want to become famous? here is the solution. give your reviews via blog. invite your friends to your blog. show them your intellectual knowledge. become famouse as a blogger/expert of specific field or thing. let us say, you are a big fan of sachin. have your collection of him in your blog. show your fondness to your frien

How to add Followers Gadget to your dynamic view template?

Followers is no more a gadget by blogger.If you are using it before it expired, you have it. But what about the new users? or what if you have deleted it? here is the solution for it. follow the steps mentioned below and your gadget will be in your layout. open layout window. click on add new gadget. find Followers in more gadgets. If you can find it, your work is over. If you can't follow the next steps. + on HTML/Java script gadget. copy the link shown in the address bar. paste it in notepad. replace HTML with Followers. open the new link in the browser you are using blogger.  The gadget is yours. configure your followers gadget. Follow this blog to get something of everything. Like, tweet, + if you get your gadget. Some more blog topics you may like to read: Disable Right Clock Remove Template View. Why one should blog? Hope you find it useful. Comment if you have doubts or suggestions. Like, tweet and + post if you find it useful. follow us to get more.

How to disable right click in blog?

Worried about piracy? don't want people to copy paste your work? here is the solution. you can disable right click n your blog . All you have to do is follow the below mentioned steps. Go to template window. click on template in left side column. click on EDIT HTML button. it is side by customize button. After </head> string,  write the code shown below. <script type='text/javascript'>   var message= &quot; Sorry, you can not copy the content &quot; function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&amp;&amp;!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&amp;&amp;!document.getElementById){ document.onmousedown=clickIE4; } document.oncontex