Wednesday, April 7, 2010

Remove navbar blue bar in blogspot - Remove Subscribe to atom feed link - change favicon

TO REMOVE THE NAVBAR / Blue bar on top of your blogspot blog.

Find /* Variable definitions in your html template.
Copy and paste this below code above the /* Variable definitions.

#navbar-iframe {
display: none !important;
}

You are done.

To remove subscribe to atoms feed link on the bottom of your blog
Find .feed-links in your blog html ( inside your layout)
Copy and paste this code

.feed-links {
clear: both;
line-height: 0px;
visibility: hidden;
height: 0px;
display: none;
}

You are done.

To change the default Orange box B favicon in your blogspot
Create your own favicon first in the site WWW.ICONJ.COM and you will get your favicon link there.


Just copy and paste that code before </head> tag and after the script tag.

So it will just looks like the below code


It may look like this


!]]></script>

<link href='http://www.iconj.com/ico/z/2/YOURFAVICON.ico' rel='shortcut icon' type='image/x-icon'/>

</head>

No comments:

Post a Comment