Media
Big Law
Law and JusticeLaw Enforcement
Law Firms
Indictments
Advanced SearchAgencies
The Legal System
The Story Series
Consulting FirmsConsultants...
Conditional tags
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...
HTML Pre Code
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="generator" content="JSFiddle">
</body>
<meta name="description" content="Displaying your source code on web...
List Posts by Date
List Posts by Date
undefined NaN, NaN
var dates = ""
var dateu = new Date(dates);
var months = ["January","February","March","April","May","June","July","August","September","October","November","December"];
document.getElementById("updatedateinfo").innerHTML = months[dateu.getMonth()] + " " + dateu.getDate() + ", " + dateu.getFullYear();
...