Conditional template tags in Blogger template allows you to specify a part of your template code on specific types of pages or specific URLs.One practical application could be to display a widget on specific pages. You can hide sidebar on some pages, apply a meta tag to certain page or whatsoever. Complex Blogger templates make large use of...
Full Page Tests -
Test Page - sorry nothing here for you or me
fff
.post { width: 100% !important; }
.post-footer { display: none !important; }
.post-header-line-1 { display: none !important; }
.gapad2 { display: none !important; }
#rsidebar-wrapper { display: none !important; }
.comments { display: none !important; }
#outer-wrapper { width: 100%...
callback -list comments
function mbtlist(json) {
for (var i = 0; i json.feed.entry.length; i++)
{
var TotalPosts = json.feed.openSearch$totalResults.$t;
}
var listing = "Total = " +TotalPosts+ " awesome comments!" ;
document.write(listing);
}
Total = 35151 awesome commen...