Few people kept mailing me regarding the rounded corners in blogger/blogspot blogs. They wanted to show rounded corners rather than the straight edges. Since the number of mails kept increasing regarding this tutorial, I thought to make a post about them. Pretty good example to illustrate this would be consider the following boxes. Just look at the corner sections of each box.
Browse » Home » Posts filed under Blog Trick
Monday
Tuesday
How To Add Label Rss Feed Link Button To Each Blogger Categories
Posted ByidBlogWalkingAndPost on | 2:54 PM

How to Add Rss Feeds Image button in front of all your blogger labels, so that your readers can subscribe to your particular categories only they like the most instead of subscribing for your all blog posts.This is very useful for blogs who have mixed type content with several different categories in there blog.
How To Hide / Remove Status Message Bar In Blogger Blogs
Posted ByidBlogWalkingAndPost on | 2:46 PM

What is "Status Message Bar" in Blogger Blog?
In Search pages or in Label Pages You can observe a Bar with some message at the top of posts.
that is Status Message Bar.
It should be like...:-)
Open external links in a new page on Blogger
Posted ByidBlogWalkingAndPost on | 1:23 PM
Here we can use a script thta will make every external link to open in a new page.
- Go to the “Template” tab, also called “Layout” from the desktop, and then go to “Edit HTML”.
- Search the following text:
- In the last code, replace www.yourblog.blogspot.com and yourblog.blogspot.com for your blog’s address, and that’s it.
This Article from here http://blog.btemplates.com/open-external-links-in-a-new-page-on-blogger/
]]></b:skin>
and just after this paste the following:
<script language='javascript'>
var dominio = "www.yourblog.blogspot.com";
var dominio1 = "yourblog.blogspot.com";
var script = "javascript:void(0);";
var imagenesblogger0 = "bp0.blogger.com";
var imagenesblogger1 = "bp1.blogger.com";
var imagenesblogger2 = "bp2.blogger.com";
var imagenesblogger3 = "bp3.blogger.com";
var blogger1 = "www.blogger.com";
var blogger2 = "www2.blogger.com";
var publicidad = "pagead2.googlesyndication.com";
function LinksExternos() {
var Externo;
if (document.getElementsByTagName('a')) {
for (var i = 0; (Externo = document.getElementsByTagName('a')[i]); i++) {
if (
Externo.href.indexOf(dominio) == -1 &&
Externo.href.indexOf(dominio1) == -1 &&
Externo.href.indexOf(script) == -1 &&
Externo.href.indexOf(imagenesblogger0) == -1 &&
Externo.href.indexOf(imagenesblogger1) == -1 &&
Externo.href.indexOf(imagenesblogger2) == -1 &&
Externo.href.indexOf(imagenesblogger3) == -1 &&
Externo.href.indexOf(publicidad) == -1 &&
Externo.href.indexOf(blogger1) == -1 &&
Externo.href.indexOf(blogger2) == -1
)
{
Externo.setAttribute('target', '_blank');
//Externo.setAttribute('class', 'linkexterno');
}
}
}
}
window.onload = function() {
LinksExternos();
}
</script>
Subscribe to:Posts ( Atom )

