Skip to main content

Classic Templates - More Work, Not Quite As Customisable As Layouts

Have you surfed the AppsSpot Product Ideas for Blogger database yet? Lots of bloggers have submitted quite a few suggestions, including a few for new templates, and for more gadgets to install in the templates. Do this quickly, as time is limited.
Don't wait too long, we will be closing this series to new questions and votes on May 14, 2009.


If your blog has a classic template, you won't benefit from either new templates, nor XML based gadgets - you'll need gadgets written in HTML. An example of an HTML gadget is Google Friend Connect. Here's what I installed on my home blog, Nitecruzr Dot Net. (Note as always, I have inserted a few gratuitous line breaks, to make this readable.)

<!-- Include the Google Friend Connect javascript library. -->
<script src="http://www.google.com/friendconnect/script/friendconnect.js" type="text/javascript">
</script>
<!-- Define the div tag where the gadget will be inserted. -->
<div id="div-1235233700850" style="width:282px;border:1px solid #cccccc;"></div>
<!-- Render the gadget into a div. -->
<script type="text/javascript">
var skin = {};
skin['HEIGHT'] = '385';
skin['BORDER_COLOR'] = '#cccccc';
skin['ENDCAP_BG_COLOR'] = '#e0ecff';
skin['ENDCAP_TEXT_COLOR'] = '#333333';
skin['ENDCAP_LINK_COLOR'] = '#0000cc';
skin['ALTERNATE_BG_COLOR'] = '#ffffff';
skin['CONTENT_BG_COLOR'] = '#ffffff';
skin['CONTENT_LINK_COLOR'] = '#0000cc';
skin['CONTENT_TEXT_COLOR'] = '#333333';
skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc';
skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666';
skin['CONTENT_HEADLINE_COLOR'] = '#333333';
google.friendconnect.container.setParentUrl
('/' /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
{ id: 'div-1235233700850',
site: '00360112972094312055' },
skin);
</script>

To install the above code in Nitecruzr Dot Net, which uses a layouts template, I simply added a new HTML / JavaScript Gadget, and pasted the code into the gadget. To install the above code into a blog with a classic template, I have to edit the template HTML.

Here, I will add a Google Friend Connect gadget to my blog which uses a classic template, Nitecruzr Classic Template Laboratory. As long as I can find the right spot to add the code, this is not too difficult. To make it easy to demonstrate, I'll add it right near the top of the sidebar, right below the Blogger Following link.

<!-- Begin #sidebar -->
<div id="sidebar"><div id="sidebar2">
<ul>
<li><a href="http://nitecruzrtest.blogspot.com/">>> Home</a></li>
</ul>

<!-- Begin #profile-container -->

<$BlogMemberProfile$>

<!-- End #profile -->

<h2 class="sidebar-title">Follow / Friend Connect</h2>
<script type="text/javascript" language="javascript">
javascript:_FollowersView._openPopup("http://www.blogger.com/follow-blog.g?blogID=24854703&blogTitle=Nitecruzr+Classic+Template+Laboratory");
</script>

<!-- Include the Google Friend Connect javascript library. -->
<script type="text/javascript" src="http://www.google.com/friendconnect/script/friendconnect.js"></script>
<!-- Define the div tag where the gadget will be inserted. -->
<div id="div-5199007134918127325" style="width:220px;border:1px solid #cccccc;"></div>
<!-- Render the gadget into a div. -->
<script type="text/javascript">
var skin = {};
skin['BORDER_COLOR'] = '#cccccc';
skin['ENDCAP_BG_COLOR'] = '#e0ecff';
skin['ENDCAP_TEXT_COLOR'] = '#333333';
skin['ENDCAP_LINK_COLOR'] = '#0000cc';
skin['ALTERNATE_BG_COLOR'] = '#ffffff';
skin['CONTENT_BG_COLOR'] = '#ffffff';
skin['CONTENT_LINK_COLOR'] = '#0000cc';
skin['CONTENT_TEXT_COLOR'] = '#333333';
skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc';
skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666';
skin['CONTENT_HEADLINE_COLOR'] = '#333333';
skin['NUMBER_ROWS'] = '4';
google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
{ id: 'div-5199007134918127325',
site: '04818405130895930258' },
skin);
</script>

Having done that, you may check out the result in Nitecruzr Classic Template Laboratory.

And, as always, please backup the template, before and after making this change.

>> Top

Comments

Popular posts from this blog

Add A Custom Redirect, If You Change A Post URL

When you rename a blog, the most that you can do, to keep the old URL useful, is to setup a stub post , with a clickable link to the new URL. Yo! The blog is now at xxxxxxx.blogspot.com!! Blogger forbids gateway blogs, and similar blog to blog redirections . When you rename a post, you can setup a custom redirect - and automatically redirect your readers to the post, under its new URL. You should take advantage of this option, if you change a post URL.

Referer Spam Is Annoying - And, It's Persistent

Recently, we've seen a few blog owners who are curious about odd trends in their Stats displays. My numbers seem to go up steadily for a while, then drop. Then, they go up again, for a while, then drop again. Rises and falls in traffic are normal. You'll never have the same number of people, viewing your blog, constantly. During some days and some hours, our readers are going to be elsewhere, and not viewing our blogs.

Jump Break Is Visible Only In An Index Page

Some blog owners are unsure what a Jump Break looks like, when applied to their blogs. Occasionally, in Blogger Help Forum: Get Help with an Issue , we see the confusion. Where's the Jump Break? or I added a Jump Break to several posts, but it never shows up! When asked for a screen print of what they're seeing, they may provide a image of the post, in the Post Editor Preview window - or possibly, the published post, but in post page view.