<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Free script resoure online - WP theme - Joomla theme - VBB theme - Graphic theme &#187; Cloud Widget</title>
	<atom:link href="http://www.w3code.net/tag/cloud-widget/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.w3code.net</link>
	<description>WP theme - Joomla theme - VBB theme - Graphic theme</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:55:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Updated: Tag cloud /Label cloud in Blogger</title>
		<link>http://www.w3code.net/updated-tag-cloud-label-cloud-in-blogger/</link>
		<comments>http://www.w3code.net/updated-tag-cloud-label-cloud-in-blogger/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 04:58:24 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger template]]></category>
		<category><![CDATA[Blogger Templates]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[Label Cloud]]></category>
		<category><![CDATA[Tags cloud]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=532</guid>
		<description><![CDATA[Here is the code and setup information to use the Label Cloud in New Blogger. First you obviously have to have a blog on New Blogger, and you MUST be using the layouts templates, (this isn&#8217;t available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the code and setup information to use the <a href="http://www.w3code.net/add-label-clouds-in-your-blogger/">Label Cloud in New Blogger</a>. First you obviously have to have a blog on New Blogger, and you MUST be using the layouts templates, (this isn&#8217;t available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs to be at least ONE label with more than ONE entry or the scripts hit a bug &#8211; so have at least one label with more than one entry before starting).</p>
<p>Make sure you backup your template before making any changes! Log into Blogger and go to your layouts section. On the &#8216;Page Elements&#8217; setup page<br />
make sure you have a label widget already installed where you want it (it can be moved around later). Then go to the Edit HTML settings and leave the widgets NOT exapanded. It will make things easier to deal with.</p>
<p>Now the code comes in 3 parts. A section for the stylesheet, a configurations section, and then the actual widget itself.</p>
<p>The first part to put in is the stylesheet section. The following code needs to be copied and inserted into your stylesheet, which in the layouts is marked out by the <strong>&lt;b:skin&gt;</strong> tags.</p>
<p>Easiest thing to do is find the closing skin tag:</p>
<blockquote><p>]]&gt;&lt;/b:skin&gt;</p></blockquote>
<p>and place the code right BEFORE that. Here it is, copy and paste without modification right now. I&#8217;ll explain what can be tweaked later.</p>
<blockquote><p>/* Label Cloud Styles<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; */<br />
#labelCloud {text-align:center;font-family:arial,sans-serif;}<br />
#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}<br />
#labelCloud ul{list-style-type:none;margin:0 auto;padding:0;}<br />
#labelCloud a img{border:0;display:inline;margin:0 0 0 3px;padding:0}<br />
#labelCloud a{text-decoration:none}<br />
#labelCloud a:hover{text-decoration:underline}<br />
#labelCloud li a{}<br />
#labelCloud .label-cloud {}<br />
#labelCloud .label-count {padding-left:0.2em;font-size:9px;color:#000}<br />
#labelCloud .label-cloud li:before{content:&#8221;" !important}</p></blockquote>
<p>This next section is the configuration section for the Cloud. It also goes in the head of the template, but outside of the stylesheet part. Easiest thing to do again is to find the closing stylesheet tag:</p>
<blockquote><p>]]&gt;&lt;/b:skin&gt;</p></blockquote>
<p>But this time place the code right AFTER that line, but BEFORE the <strong>&lt;/head&gt;</strong> tag. Here it is.</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
// Label Cloud User Variables<br />
var cloudMin = 1;<br />
var maxFontSize = 20;<br />
var maxColor = [0,0,255];<br />
var minFontSize = 10;<br />
var minColor = [0,0,0];<br />
var lcShowCount = false;<br />
&lt;/script&gt;</p></blockquote>
<p>All of these settings can be changed but I&#8217;ll explain them in a moment. The defaults will work for now.</p>
<p>Now the widget itself. Scroll down and find the label widget in your sidebar. It should look something like this.</p>
<blockquote><p>&lt;b:widget id=&#8217;Label1&#8242; locked=&#8217;false&#8217; title=&#8217;Labels&#8217; type=&#8217;Label&#8217;/&gt;</p></blockquote>
<p>Copy the following code (from beginning widget tag to ending widget tag) and replace the line above with it.</p>
<p style="text-align: center;"><a href="http://www.w3code.net/wp-content/uploads/2009/04/label-cloud-2.txt">View this code here</a></p>
<p>Now if all has gone well, and you have posts already labeled, then if you preview the blog you should see some form of the Cloud appearing. If it doesn&#8217;t appear, then something went wrong. You should probably back out and try it again from the start.</p>
<p><strong>Update</strong> : I&#8217;ve found 2 things to check for first if the label cloud isn&#8217;t showing.  First make sure that at least one of your labels has more than one entry. A bug in the script causes it to fail when all the labels have only one entry.(As soon as any label has more than one entry, then it should be ok from then on) Also, make sure that none of your labels contain quote marks &#8221; . Most likely the cloud with it&#8217;s default settings won&#8217;t be what you ultimately want. But all the colors and sizes are configurable to match your tastes. If the cloud is appearing in preview then you can go about changing some of the variables so they suit.</p>
<p>The settings in the Variables section will be where you make most of your adjustments. Here I&#8217;ll explain what each setting does.</p>
<blockquote><p>var cloudMin= 1;</p></blockquote>
<p>This setting you can use to limit the number of labels shown (for example if you have a lot of labels). Leave the setting at 1 to show ALL labels.  If you enter in a higher number, then only labels that have at least that number of entries will appear in the cloud.</p>
<blockquote><p>var maxFontSize = 20;<br />
var maxColor = [0,0,255];<br />
var minFontSize = 10;<br />
var minColor = [0,0,0];<br />
var lcShowCount = false;</p></blockquote>
<p><strong>The lines for:</strong></p>
<ol>
<li>maxFontSize</li>
<li>maxColor</li>
</ol>
<p>Do what you may think they do. The first one sets the size (in pixels) of the label with the most amount entries. The maxColor sets the color of that entry (in RGB format). Similiar with the next two</p>
<ol>
<li>minFontSize</li>
<li>minColor</li>
</ol>
<p>Just these are for the label with the least amount of entries. Again the size is in pixels, the color is in RGB format. Any labels between the two will get their color/sizes based on how many labels they are, and where their entry count falls, giving the much desired cloud effect.</p>
<p>From my experimenting, there are many factors that make up a pleasant looking cloud. From color/size choice, to the number of actual labels, to how well dispersed the entries are amoung the labels. 3 Labels don&#8217;t make a good cloud as there isn&#8217;t much to work with. You just have to experiment around to see what looks good with your setup.</p>
<p><strong>IMPORTANT</strong>, when change the color settings, Keep them in the format supplied. In between the [] and the numbers separated by commas. The default colors are BLUE for the max and BLACK for the min.</p>
<p>You can select any valid RGB color combination. If you don&#8217;t know what RGB colors are, don&#8217;t worry. It&#8217;s just a way of defining a color. You can use many charts on the Internet to get the correct RGB value for the color you want to try. Here&#8217;s one that is fairly good.</p>
<p>RGB Color Code Chart Remember, if you get the 3 sets of numbers to enter them in correctly. Inside the [ ] separated by commas.</p>
<p>Also experiment with different font sizes. Again it depends on how many entries, how dispersed they are, and how much room for the cloud is available as to what looks good.<br />
The last variable there is</p>
<p>lcShowCount</p>
<p>This can either be false (default) or true. All this does is turn off/on the post count displayed<br />
next to the label. Usually in a &#8216;traditional&#8217; cloud the count isn&#8217;t used. But if you go to a<br />
&#8216;flat&#8217; listing then it&#8217;s sometimes useful to turn it on.</p>
<p>Now to the CSS section. Most people won&#8217;t need to tweak these much, and it&#8217;s not necessary to<br />
understand what all those entries are for. Most are just to make sure that other styling<br />
elements from the rest of your page don&#8217;t inherit in and ruin the cloud. But there are a few<br />
that you may want to change to suit.<br />
The first line</p>
<p>#labelCloud {text-align:center;font-family:arial,sans-serif;}</p>
<p>You could change the fonts used in the cloud here if you wanted.<br />
Also, the text-align statement can also be changed. I have it set to center by default but you<br />
could use</p>
<p>text-align:justify;<br />
text-align:right;<br />
text-align:left;</p>
<p>If those suit better.</p>
<p>The next line</p>
<p>#labelCloud  .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}</p>
<p>Well don&#8217;t worry about most of it unless you are a hardcore CSS&#8217;er. The only one of real<br />
importance is the first entry</p>
<p>display:inline;</p>
<p>You can change that to</p>
<p>display:block;</p>
<p>To get the &#8216;Flat&#8217; (each entry on it&#8217;s own separate line) listing of the weighted entries.<br />
Usually if that is set to block you would probably want to change the sort frequency from<br />
alphabetical to frequency. You do that by editing the widget from the Page Elements tab in<br />
Blogger.</p>
<p>And the last bit I&#8217;ll mention is the line</p>
<p>#labelCloud .label-count</p>
<p>If you set the lcShowCount variable to true to show the post counts, you could change the<br />
color/size of those numbered entries with that line.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/updated-tag-cloud-label-cloud-in-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blogger Tag Cloud / Label Cloud</title>
		<link>http://www.w3code.net/new-blogger-tag-cloud-label-cloud/</link>
		<comments>http://www.w3code.net/new-blogger-tag-cloud-label-cloud/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 04:45:40 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger template]]></category>
		<category><![CDATA[Blogger Templates]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[Label Cloud]]></category>
		<category><![CDATA[Tags cloud]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=528</guid>
		<description><![CDATA[Tag Clouds, you have seen them on delicious, Technorati or Flickr, are an easy way to get people explore your site deeper. Here&#8217;s a sample tag cloud that uses Google AJAX Search. Tag Clouds (provided they are not cluttered and display just the relevant words) help visitors quickly visualize what your website is all about [...]]]></description>
			<content:encoded><![CDATA[<p>Tag Clouds, you have seen them on delicious, Technorati or Flickr, are an easy way to get people explore your site deeper. Here&#8217;s a sample tag cloud that uses Google AJAX Search.</p>
<p><a href="http://www.w3code.net/add-label-clouds-in-your-blogger/">Tag Clouds</a> (provided they are not cluttered and display just the relevant words) help visitors quickly visualize what your website is all about since the topics you frequently cover are mentioned in bold or relatively bigger fonts.</p>
<p>WordPress community already offers some excellent plugins for generating tag clouds (like the Ultimate Warrior) plus the upcoming release, WP 2.3, has inbuilt support for tagging.</p>
<p>However, if you are on Blogger or have a non-blog website, there&#8217;s no reason that you should miss Tag Clouds.</p>
<p>Here&#8217;s how to add a good looking tag cloud to your Blogger blog:</p>
<p><strong>1. Type your Blogger feed address in google feed:</strong></p>
<blockquote><p>http://www.blogger.com/feeds/<strong>XXX</strong>/posts/default?max-results=542</p></blockquote>
<p>Remember to replace <strong>XXX</strong>with your Blog ID. This URL will retrieve your latest 542 posts and supply that for analysis to Feed.</p>
<p><strong>2. For the word link, type the following (where </strong>name <strong>is your blog name, e.g. w3code)</strong></p>
<blockquote><p><strong></strong>http://name.blogspot.com/search?q=%%enc_word%%</p></blockquote>
<p><strong>3. You can change the default font size, tag cloud dimension background image and colors to fit your site theme.</strong></p>
<p>4. <strong>Now the tricky part</strong>. Once you have generated the tag cloud using Feed, right click over your tag cloud and click &#8220;<strong>View HTML source</strong>&#8221; &#8211; that the code you need to copy paste in your site.</p>
<p>Tip for <a href="http://www.w3code.net/autoblogger-post-feed-to-your-blog/">Tag Clouds</a> &#8211; If you really want visitors to spend more time on your site via Tag Clouds, always keep the number of words in Tag Cloud to an absolute minimum and that there is sufficient space around each word.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/new-blogger-tag-cloud-label-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add label clouds in your blogger</title>
		<link>http://www.w3code.net/add-label-clouds-in-your-blogger/</link>
		<comments>http://www.w3code.net/add-label-clouds-in-your-blogger/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 04:39:55 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger template]]></category>
		<category><![CDATA[Blogger Templates]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[Label Cloud]]></category>
		<category><![CDATA[Tags cloud]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=524</guid>
		<description><![CDATA[A tag cloud or label cloud for blogger is a list of all the labels used within a blogger blog displayed with style.You can see a demo of the Label cloud widget here on my site. This Tag Cloud Widget was originally developed by phydeaux3. I have just simplified and made it easier to install.. [...]]]></description>
			<content:encoded><![CDATA[<p>A tag cloud or label cloud for blogger is a list of all the labels used within a blogger blog displayed with style.You can see a demo of the Label cloud widget here on my site. This Tag Cloud Widget was originally developed by phydeaux3. I have just simplified and made it easier to install..</p>
<p>You can see a good implementation of this label cloud widget on one of our readers blog -Speak Media Blog.<br />
First Of all Goto Your blogger Layout&gt;Page Elements page and add a Labels Widget there..You can Do that using the Add a Page Element Option on that Choose to sort the labels Alphabetically when prompted.</p>
<p>After Adding the Label Widget Goto Layout&gt;<strong>Edit Html</strong> (Do not expand the widget templates for the sake of easy explanation)</p>
<p><strong>You will find some code similar to:</strong></p>
<blockquote><p>&lt;b:widget id=&#8217;Label1&#8242; locked=&#8217;false&#8217; title=&#8217;Labels&#8217; type=&#8217;Label&#8217;/&gt;</p></blockquote>
<p><strong>Now Replace that with:</strong></p>
<p><a href="http://www.w3code.net/wp-content/uploads/2009/04/label-cloud.txt">View this content</a></p>
<p><strong>Next find :</strong></p>
<blockquote><p><strong></strong> ]]&gt;&lt;/b:skin&gt;</p></blockquote>
<p><strong>&#8230;and replace it with:</strong></p>
<blockquote><p>#labelCloud {text-align:center;font-family:arial,sans-serif;}<br />
#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}<br />
#labelCloud ul{list-style-type:none;margin:0 auto;padding:0;}<br />
#labelCloud a img{border:0;display:inline;margin:0 0 0 3px;padding:0}<br />
#labelCloud a{text-decoration:none}<br />
#labelCloud a:hover{text-decoration:underline}<br />
#labelCloud li a{}<br />
#labelCloud .label-cloud {}<br />
#labelCloud .label-count {padding-left:0.2em;font-size:9px;color:#000}<br />
#labelCloud .label-cloud li:before{content:&amp;quot;&amp;quot; !important}<br />
]]&gt;&lt;/b:skin&gt;</p></blockquote>
<p>Save your template and now you should get a working Label Cloud On your Blog.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/add-label-clouds-in-your-blogger/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to remove Label in Blogger ?</title>
		<link>http://www.w3code.net/how-to-remove-label-in-blogger/</link>
		<comments>http://www.w3code.net/how-to-remove-label-in-blogger/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 14:48:09 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger themes]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[Label Cloud]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=190</guid>
		<description><![CDATA[When you created so much Label the same meaning as : Fashion, Fashion shows, so you want delete it for SEO on good URL. The simple ways to resolve it quikly. 1. Login in blogger .com 2. Posting &#8211; Edit Posts 3. Choose Labels want to remove or change this. 4. Finaly, I&#8217;d conclude this [...]]]></description>
			<content:encoded><![CDATA[<p>When you created so much Label the same meaning as : Fashion, Fashion shows, so you want delete it for <strong><a target="_blank" href="http://www.sharevnn.com">SEO</a></strong> on good URL.<br />
<!-- Copyright by http://www.sharevnn.com /--><br />
The simple ways to resolve it quikly.</p>
<blockquote><p>1. Login in <a target="_blank" href="http://www.blogger.com">blogger .com</a><br />
<!-- Copyright by http://www.sharevnn.com /--><br />
2. <strong>Posting &#8211; Edit Posts</strong><br />
<!-- Copyright by http://www.sharevnn.com /--><br />
3. Choose<strong> Labels</strong> want to remove or change this.</p></blockquote>
<p>4. <img class="aligncenter size-medium wp-image-191" title="how-to-remove-label" src="http://www.w3code.net/wp-content/uploads/2009/02/how-to-remove-label-300x110.gif" alt="how-to-remove-label" width="300" height="110" /> <img class="aligncenter size-medium wp-image-192" title="how-to-remove-label-1" src="http://www.w3code.net/wp-content/uploads/2009/02/how-to-remove-label-1-300x106.gif" alt="how-to-remove-label-1" width="300" height="106" /><br />
Finaly, I&#8217;d conclude this short more:</p>
<blockquote>
<ol>
<li>Click the &#8220;Books&#8221; label link on the left side of the page.</li>
<li>Click the &#8220;Select All&#8221; link at the top of the list of posts.</li>
<li>From the &#8220;Label Actions&#8230;&#8221; menu, choose &#8220;Remove label &gt; Books.&#8221;</li>
<li>From the &#8220;Label Actions&#8230;&#8221; menu, choose &#8220;Apply label &gt; New Label&#8230;&#8221;</li>
<li>Enter &#8220;Reading&#8221; as your new label. (If you already have some posts with the label &#8220;Reading,&#8221; you can simply apply that label, without making a new label.)</li>
</ol>
</blockquote>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-remove-label-in-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to insert Banner, Logo in Blogger ?</title>
		<link>http://www.w3code.net/how-to-insert-banner-logo-in-blogger/</link>
		<comments>http://www.w3code.net/how-to-insert-banner-logo-in-blogger/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 16:38:12 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger Templates]]></category>
		<category><![CDATA[Blogger themes]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[Navigation Bar]]></category>
		<category><![CDATA[Script code]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=154</guid>
		<description><![CDATA[It&#8217;s equally easy to include a logo or other graphic in the header, though how you proceed will depend on whether you retain or replace the existing title text. Retaining the Title Text If you wish to keep the existing title text, including a graphic in your header is easy. The key here is that [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s equally easy to include a logo or other graphic in the header, though how you proceed will depend on whether you retain or replace the existing title text.<br />
<strong>Retaining the Title Text</strong><br />
If you wish to keep the existing title text, including a graphic in your header is easy. The key here is that you can put <strong>HTML</strong>, including the <strong>&lt;IMG&gt;</strong> tag, in <strong>Blogger&#8217;s Title and Description fields</strong>. To add a graphic to existing text:</p>
<p><img class="aligncenter size-medium wp-image-155" title="blogger_logo_add" src="http://www.w3code.net/wp-content/uploads/2009/02/blogger_logo_add-300x80.gif" alt="blogger_logo_add" width="300" height="80" /><br />
<strong>Open the Settings &gt; Basic tab</strong><br />
Click in the Title field, to the left of your title text<br />
Type the <strong>&lt;IMG&gt;</strong> tag, pointing to the location of the image you wish to use, as in</p>
<blockquote><p>
<strong>&lt;IMG SRC=&#8221;[http://w3code.net/logo.gif]&#8220;&gt;</strong></p></blockquote>
<p>Save your changes and preview your blog</p>
<p><strong>You&#8217;re done!</strong></p>
<p><strong>Replacing the Title Text</strong><br />
Things get trickier if you want to replace the contents of the Title field with graphically stylized text. Sure, you can paste an <strong>&lt;IMG&gt;</strong> tag into the field, but if you eliminate the title text, your blog name won’t show up anywhere.</p>
<p><img class="aligncenter size-medium wp-image-156" title="clear_title_tag" src="http://www.w3code.net/wp-content/uploads/2009/02/clear_title_tag-300x148.gif" alt="clear_title_tag" width="300" height="148" /><br />
A better approach is to use the CSS Fahrner Image Replacement (FIR) technique, an elegant solution that’s at the heart of CSS-intensive sites like ZenGarden. In a nutshell, the FIR technique uses stylesheets to replace text with an image, essentially hiding the text from standards-compliant browsers.</p>
<p>This is accomplished by creating a style that sets the text to display: none. Then another style displays a background image instead of the hidden text. You use CSS to control the positioning of the replacement image.</p>
<p>This approach introduces accessibility barriers because display: none renders any element with this declaration invisible to certain screen readers (and possibly to search engines as well). Many people are working on FIR variants that address this problem. In the meantime, I decided to try a compromise solution. Feel free to change the settings below to work for you:<br />
<strong>Open your blog template:</strong></p>
<p>Place an empty <strong>&lt;SPAN&gt;&lt;/SPAN&gt;</strong> container in the Header area, after &lt;$BlogTitle$&gt;. You will use this to hook a style onto in a moment.<br />
Scroll up to the style declaration part of your template, and modify the <strong>#blog-title style</strong>. (Instead of <strong>display:none</strong>; I used the attributes below. Setting the font-size to 2% makes the title all but invisible, but keeps it there for search engines and screen readers. At least that’s my theory — I have no way to test this.)</p>
<blockquote><p>#blog-title {<br />
font-size:2%;<br />
line-height:1.2em;<br />
font-weight:normal;<br />
color:#ffffff;<br />
text-align:center;<br />
text-transform:uppercase;<br />
letter-spacing:.2em;<br />
}</p></blockquote>
<p>Create a new style called <strong>#blog-title span</strong>, as per the example below. You will need to experiment a bit, but basically this code centers a graphic over the hidden text. The <strong>background:url</strong> argument specifies the image to use.</p>
<blockquote><p>#blog-title span {<br />
display:block;<br />
top:0;<br />
width:334px;<br />
margin-top:10px;<br />
margin-right:auto !important;<br />
margin-left:auto !important;<br />
z-index:1 !important;<br />
height:60px;<br />
background:url(&#8220;[your domain and filename]&#8220;) no-repeat;<br />
cursor:hand;<br />
}</p></blockquote>
<p><strong>Save your template changes and preview your blog. Done !</strong></p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-insert-banner-logo-in-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete &#8220;Count post&#8221; in Label Widget blogger ?</title>
		<link>http://www.w3code.net/how-to-delete-count-post-in-label-widget-blogger/</link>
		<comments>http://www.w3code.net/how-to-delete-count-post-in-label-widget-blogger/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 15:03:22 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger themes]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[commentID]]></category>
		<category><![CDATA[postID]]></category>
		<category><![CDATA[userID]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=105</guid>
		<description><![CDATA[Actually count the number of messages in the label is essential in Widget Label, as it is for many labels including items or not, and from which the reader can imagine that the categories that are focused in your blog or not. However, because of 1 reason that you want to hide this number, you [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-108" title="clear-count-post" src="http://www.w3code.net/wp-content/uploads/2009/02/clear-count-post.gif" alt="clear-count-post" width="152" height="280" />Actually count the number of messages in the label is essential in Widget Label, as it is for many labels including items or not, and from which the reader can imagine that the categories that are focused in your blog or not. However, because of 1 reason that you want to hide this number, you can use the following month. It&#8217;s easy.</p>
<p>You to follow the template: <strong>Template -&gt; Edit HTML -&gt; Expand Widget Templates. </strong></p>
<p>To the search browser, you find to card <strong>&lt;data:label.count/&gt;</strong> in the template and delete the line containing it. As follows:</p>
<blockquote><p>&lt;b:else/&gt;<br />
&lt;a expr:dir=&#8217;data:blog.languageDirection&#8217; expr:href=&#8217;data:label.url&#8217;&gt;<br />
&lt;data:label.name/&gt;<br />
&lt;/a&gt;<br />
&lt;/b:if&gt;<br />
<strong> &lt;span dir=&#8217;ltr&#8217;&gt;(&lt;data:label.count/&gt;)&lt;/span&gt;</strong><br />
&lt;/li&gt;<br />
&lt;/b:loop&gt;</p></blockquote>
<p>And you delete it by going black. Then Save Template is complete.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-delete-count-post-in-label-widget-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create Auto keywords in Blogger for Classic Template ?</title>
		<link>http://www.w3code.net/how-to-create-auto-keywords-in-blogger-for-classic-template/</link>
		<comments>http://www.w3code.net/how-to-create-auto-keywords-in-blogger-for-classic-template/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 12:14:01 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger themes]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[commentID]]></category>
		<category><![CDATA[postID]]></category>
		<category><![CDATA[Read more]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=99</guid>
		<description><![CDATA[You to find keywords: &#60;$ BlogItemBody $&#62; &#60;ItemPage&#62;&#60;div id=&#8221;post_body&#8221;&#62;&#60;/ItemPage&#62;&#60;$BlogItemBody$&#62;&#60;ItemPage&#62;&#60;/div&#62;&#60;/ItemPage&#62; &#60;script type=&#8221;text/javascript&#8221; src=&#8221;http://trongdai.net/keywordforpost01.js&#8221;&#62;&#60;/script&#62; &#60;script type=&#8221;text/javascript&#8221; src=&#8221;http://trongdai.net/keywordforpost02.js&#8221;&#62;&#60;/script&#62; &#60;div style=&#8221;border:1px silver dashed; background:#FFFFCC; padding:5px&#8221;&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; home_page2 = &#8220;www.vuicafe.com&#8220;; keyword_text = &#8220;&#60;b&#62;Tags Keyword:&#60;/b&#62; &#8220;; window.onLoad = makeKeywordForPost(&#8220;post_body&#8221;);&#60;/script&#62; &#60;/div&#62; and replace it with the following code: The red seats also do the same as Section 1. Done]]></description>
			<content:encoded><![CDATA[<p>You to find keywords:<br />
<strong>&lt;$ BlogItemBody $&gt; </strong></p>
<blockquote><p>&lt;ItemPage&gt;&lt;div id=&#8221;post_body&#8221;&gt;&lt;/ItemPage&gt;&lt;$BlogItemBody$&gt;&lt;ItemPage&gt;&lt;/div&gt;&lt;/ItemPage&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://trongdai.net/keywordforpost01.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://trongdai.net/keywordforpost02.js&#8221;&gt;&lt;/script&gt;<br />
&lt;div style=&#8221;border:1px silver dashed; background:#FFFFCC; padding:5px&#8221;&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
home_page2 = &#8220;<strong>www.vuicafe.com</strong>&#8220;;<br />
keyword_text = &#8220;&lt;b&gt;Tags Keyword:&lt;/b&gt; &#8220;;<br />
window.onLoad = makeKeywordForPost(&#8220;post_body&#8221;);&lt;/script&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>and replace it with the following code:<br />
The red seats also do the same as Section 1. Done</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-create-auto-keywords-in-blogger-for-classic-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create Auto keywords in Blogger ?</title>
		<link>http://www.w3code.net/how-to-create-auto-keywords-in-blogger/</link>
		<comments>http://www.w3code.net/how-to-create-auto-keywords-in-blogger/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 12:07:58 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Auto keywords]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger navbar]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[commentID]]></category>
		<category><![CDATA[postID]]></category>
		<category><![CDATA[Theme Layout]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=96</guid>
		<description><![CDATA[For Theme Layout: Edit to Template, select the Expand Widget, then use the search engine browser to find since: &#60;data:post.body/&#62; Replace the ribbon from the following code: &#60;b:if cond=&#8217;data:blog.pageType != &#38;quot;item&#38;quot;&#8217;&#62;&#60;data:post.body/&#62;&#60;/b:if&#62; &#60;b:if cond=&#8217;data:blog.pageType == &#38;quot;item&#38;quot;&#8217;&#62; &#60;div id=&#8217;post_body&#8217;&#62;&#60;data:post.body/&#62;&#60;/div&#62; &#60;/b:if&#62; &#60;b:if cond=&#8217;data:blog.pageType == &#38;quot;item&#38;quot;&#8217;&#62; &#60;script src=&#8217;http://www33.websamba.com/anhvosite/blogger/js/keywordforpost01.js&#8217; type=&#8217;text/javascript&#8217;/&#62; &#60;script src=&#8217;http://www33.websamba.com/anhvosite/blogger/js/keywordforpost02.js&#8217; type=&#8217;text/javascript&#8217;/&#62; &#60;div style=&#8217;border:1px silver dashed; background:#FFFFCC; padding:5px&#8217;&#62; &#60;script [...]]]></description>
			<content:encoded><![CDATA[<p><strong>For Theme Layout:</strong></p>
<p><strong> </strong>Edit to Template, select the Expand Widget, then use the search engine browser to find since: <strong>&lt;data:post.body/&gt;</strong></p>
<p><strong>Replace the ribbon from the following code:</strong></p>
<blockquote><p>&lt;b:if cond=&#8217;data:blog.pageType != &amp;quot;item&amp;quot;&#8217;&gt;&lt;data:post.body/&gt;&lt;/b:if&gt;<br />
&lt;b:if cond=&#8217;data:blog.pageType == &amp;quot;item&amp;quot;&#8217;&gt;<br />
&lt;div id=&#8217;post_body&#8217;&gt;&lt;data:post.body/&gt;&lt;/div&gt;<br />
&lt;/b:if&gt;<br />
&lt;b:if cond=&#8217;data:blog.pageType == &amp;quot;item&amp;quot;&#8217;&gt;</p>
<p>&lt;script src=&#8217;http://www33.websamba.com/anhvosite/blogger/js/keywordforpost01.js&#8217; type=&#8217;text/javascript&#8217;/&gt;</p>
<p>&lt;script src=&#8217;http://www33.websamba.com/anhvosite/blogger/js/keywordforpost02.js&#8217; type=&#8217;text/javascript&#8217;/&gt;<br />
&lt;div style=&#8217;border:1px silver dashed; background:#FFFFCC; padding:5px&#8217;&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
home_page2 = &amp;quot;www.vietwebguide.com&amp;quot;;<br />
keyword_text = &amp;quot;&lt;b&gt;Từ khóa trong bài:&lt;/b&gt; &amp;quot;;<br />
window.onLoad = makeKeywordForPost(&amp;quot;post_body&amp;quot;);&lt;/script&gt;<br />
&lt;/div&gt;<br />
&lt;/b:if&gt;</p></blockquote>
<p><strong>You should note the replacement value</strong>:</p>
<p>www.vuicafe.com  address is your homepage, no http://, no soet mark at the end, every y chang as I write. (eg gmailblog.blogspot.com such).</p>
<p>Please download file:</p>
<blockquote><p>http://trongdai.net/keywordforpost01.js</p></blockquote>
<p>and modify or add keywords for you. Keywords are placed in quotes (keywords can not contain quotes or caper) and prevent the comma after. Tag no final comma in preventing later.</p>
<p>For convenience, you should write the keywords on the 1 line for characters is the same. You just open the file will see clearly.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-create-auto-keywords-in-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Label Cloud Widget For Blogger</title>
		<link>http://www.w3code.net/how-to-add-label-cloud-widget-for-blogger/</link>
		<comments>http://www.w3code.net/how-to-add-label-cloud-widget-for-blogger/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 14:49:03 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Cloud Widget]]></category>
		<category><![CDATA[Label Cloud]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=51</guid>
		<description><![CDATA[First Of all Goto Your blogger Layout&#62;Page Elements page and add a Labels Widget there..You can Do that using the Add a Page Element Option on that page. Choose to sort the labels Alphabetically when prompted. After Adding the Label Widget Goto Layout&#62;Edit Html (Do not expand the widget templates for the sake of easy [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-52" title="add-label-cloud-widget-for-blogger" src="http://www.w3code.net/wp-content/uploads/2009/02/add-label-cloud-widget-for-blogger.gif" alt="add-label-cloud-widget-for-blogger" width="301" height="131" /><br />
First Of all Goto Your blogger Layout&gt;Page Elements page and add a Labels Widget there..You can Do that using the Add a Page Element Option on that page.</p>
<p>Choose to sort the labels Alphabetically when prompted.</p>
<p>After Adding the Label Widget Goto Layout&gt;Edit Html (Do not expand the widget templates for the sake of easy explanation)</p>
<p><strong>You will find some code similar to:</strong></p>
<blockquote><p>&lt;b:widget id=&#8217;Label1&#8242; locked=&#8217;false&#8217; title=&#8217;Labels&#8217; type=&#8217;Label&#8217;/&gt;</p></blockquote>
<p><strong>Add Code New:</strong></p>
<blockquote><p>&lt;b:widget id=&#8217;Label1&#8242; locked=&#8217;false&#8217; title=&#8217;Label Cloud&#8217; type=&#8217;Label&#8217;&gt;<br />
&lt;b:includable id=&#8217;main&#8217;&gt;<br />
&lt;b:if cond=&#8217;data:title&#8217;&gt;<br />
&lt;h2&gt;&lt;data:title/&gt;&lt;/h2&gt;<br />
&lt;/b:if&gt;<br />
&lt;div class=&#8217;widget-content&#8217;&gt;<br />
&lt;div id=&#8217;labelCloud&#8217;/&gt;<br />
&lt;p align=&#8217;center&#8217;&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
var cloudMin = 1;<br />
var maxFontSize = 25;<br />
var maxColor = [0,255,0];<br />
var minFontSize = 10;<br />
var minColor = [0,0,0];<br />
var lcShowCount = false;<br />
// Don&#8217;t change anything past this point &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
// Cloud function s() ripped from del.icio.us<br />
function s(a,b,i,x){<br />
if(a&amp;gt;b){<br />
var m=(a-b)/Math.log(x),v=a-Math.floor(Math.log(i)*m)<br />
}<br />
else{<br />
var m=(b-a)/Math.log(x),v=Math.floor(Math.log(i)*m+a)<br />
}<br />
return v<br />
}</p>
<p>var c=[];<br />
var labelCount = new Array();<br />
var ts = new Object;<br />
&lt;b:loop values=&#8217;data:labels&#8217; var=&#8217;label&#8217;&gt;<br />
var theName = &amp;quot;&lt;data:label.name/&gt;&amp;quot;;<br />
ts[theName] = &lt;data:label.count/&gt;;<br />
&lt;/b:loop&gt;<br />
for (t in ts){<br />
if (!labelCount[ts[t]]){<br />
labelCount[ts[t]] = new Array(ts[t])<br />
}<br />
}<br />
var ta=cloudMin-1;<br />
tz = labelCount.length &#8211; cloudMin;<br />
lc2 = document.getElementById(&amp;#39;labelCloud&amp;#39;);<br />
ul = document.createElement(&amp;#39;ul&amp;#39;);<br />
ul.className = &amp;#39;label-cloud&amp;#39;;<br />
for(var t in ts){<br />
if(ts[t] &amp;lt; cloudMin){<br />
continue;<br />
}<br />
for (var i=0;3 &amp;gt; i;i++) {<br />
c[i]=s(minColor[i],maxColor[i],ts[t]-ta,tz)<br />
}<br />
var fs = s(minFontSize,maxFontSize,ts[t]-ta,tz);<br />
li = document.createElement(&amp;#39;li&amp;#39;);<br />
li.style.fontSize = fs+&amp;#39;px&amp;#39;;<br />
a = document.createElement(&amp;#39;a&amp;#39;);<br />
a.title = ts[t]+&amp;#39; Posts in &amp;#39;+t;<br />
a.style.color = &amp;#39;rgb(&amp;#39;+c[0]+&amp;#39;,&amp;#39;+c[1]+&amp;#39;,&amp;#39;+c[2]+&amp;#39;)&amp;#39;;<br />
a.href = &amp;#39;/search/label/&amp;#39;+encodeURIComponent(t);<br />
if (lcShowCount){<br />
span = document.createElement(&amp;#39;span&amp;#39;);<br />
span.innerHTML = &amp;#39;(&amp;#39;+ts[t]+&amp;#39;) &amp;#39;;<br />
span.className = &amp;#39;label-count&amp;#39;;<br />
a.appendChild(document.createTextNode(t));<br />
li.appendChild(a);<br />
li.appendChild(span);<br />
}<br />
else {<br />
a.appendChild(document.createTextNode(t));<br />
li.appendChild(a);<br />
}<br />
ul.appendChild(li);<br />
abnk = document.createTextNode(&amp;#39; &amp;#39;);<br />
ul.appendChild(abnk);<br />
}<br />
lc2.appendChild(ul);<br />
&lt;/script&gt;<br />
&lt;/p&gt;<br />
&lt;noscript&gt;<br />
&lt;ul&gt;<br />
&lt;b:loop values=&#8217;data:labels&#8217; var=&#8217;label&#8217;&gt;<br />
&lt;li&gt;<br />
&lt;b:if cond=&#8217;data:blog.url == data:label.url&#8217;&gt;<br />
&lt;data:label.name/&gt;<br />
&lt;b:else/&gt;<br />
&lt;a expr:href=&#8217;data:label.url&#8217;&gt;&lt;data:label.name/&gt;&lt;/a&gt;<br />
&lt;/b:if&gt;<br />
(&lt;data:label.count/&gt;)<br />
&lt;/li&gt;<br />
&lt;/b:loop&gt;<br />
&lt;/ul&gt;<br />
&lt;/noscript&gt;<br />
&lt;b:include name=&#8217;quickedit&#8217;/&gt;<br />
&lt;/div&gt;<br />
&lt;/b:includable&gt;<br />
&lt;/b:widget&gt;</p></blockquote>
<p><strong>Now find:</strong></p>
<blockquote><p>]]&gt;&lt;/b:skin&gt;</p></blockquote>
<p><strong>Add CSS Label Cloud Widgets for Blogger:</strong></p>
<blockquote><p>#labelCloud {text-align:center;font-family:arial,sans-serif;}<br />
#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}<br />
#labelCloud ul{list-style-type:none;margin:0 auto;padding:0;}<br />
#labelCloud a img{border:0;display:inline;margin:0 0 0 3px;padding:0}<br />
#labelCloud a{text-decoration:none}<br />
#labelCloud a:hover{text-decoration:underline}<br />
#labelCloud li a{}<br />
#labelCloud .label-cloud {}<br />
#labelCloud .label-count {padding-left:0.2em;font-size:9px;color:#000}<br />
#labelCloud .label-cloud li:before{content:&amp;quot;&amp;quot; !important}<br />
]]&gt;&lt;/b:skin&gt;</p></blockquote>
<p>Save your template and now you should get a working Label Cloud On your Blog</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-add-label-cloud-widget-for-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

