<?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; blogID</title>
	<atom:link href="http://www.w3code.net/tag/blogid/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 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>Blogger Auto Readmore Script ver3.0</title>
		<link>http://www.w3code.net/blogger-auto-readmore-script-ver30/</link>
		<comments>http://www.w3code.net/blogger-auto-readmore-script-ver30/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:58:29 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger Templates]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[commentID]]></category>
		<category><![CDATA[postID]]></category>
		<category><![CDATA[Read more]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=94</guid>
		<description><![CDATA[Auto Script Readmore born was 5 months, versions 1.0 and 2.0 received the enthusiastic support from users is the blogger Vietnam, you are contributing many ideas developed. Anhvo very happy for this and sincerely thank you for the enthusiastic feedback. (you can see more about Auto Readmore here. To meet the diverse needs of users [...]]]></description>
			<content:encoded><![CDATA[<p>Auto Script Readmore born was 5 months, versions 1.0 and 2.0 received the enthusiastic support from users is the blogger Vietnam, you are contributing many ideas developed. Anhvo very happy for this and sincerely thank you for the enthusiastic feedback. (<a href="http://www.w3code.net/tag/read-more/">you can see more about Auto Readmore here</a>.</p>
<p>To meet the diverse needs of users are blog for Soft, pictures, teen &#8230; Anhvo adding 1 new feature in version 3.0 this is the type of support 1 arranged between the new image representation (Thumbnail) and the text description (Summary) of the message. Using the 3.0, you can optionally be shown 2 types:</p>
<p>1. Shown as ver 2.0, meaning Thumbnail Summary on the left and right.<br />
2. Thumbnail display on (flat margins between) and Summary below, this beautiful site for the collection Soft and beautiful images.</p>
<p><strong>Installation: </strong></p>
<p>Installation is easy and fast, just installed the 2.0.<br />
If you have installed the version 2.0 upgrade conducted as follows:<br />
Search for code format and length of the Thumbnail:</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
summary_noimg = 430;<br />
summary_img = 340;<br />
img_thumb_height = 100;<br />
img_thumb_width = 120;<br />
&lt;/script&gt;<br />
&lt;script src=&#8217;http://trongdai.net/summary-post-v20-test.js&#8217;<br />
type=&#8217;text/javascript&#8217;/&gt;</p></blockquote>
<p><strong> Add the line below on the lines above have: </strong></p>
<blockquote><p><strong></strong><br />
thumbnail_mode var = &#8220;no-float&#8221;;<br />
summary_noimg = 430;<br />
&#8230;</p></blockquote>
<p><strong>Continue to change the code in the link:</strong></p>
<blockquote>
<p>http://trongdai.net/summary-post-v20-test.js</p>
<p>to</p>
<p>http://trongdai.net/summary-post-v30.js</p></blockquote>
<p>So then it is finished. Row<br />
thumbnail_mode var = &#8220;no-float&#8221;;<br />
mode is displayed Readmore. Default is no-float: that is displayed in the Thumbnail and Summary below. When you use this mode, the variables and img_thumb_height img_thumb_width is the largest height and width of the largest Thumbnail, not &#8220;with&#8221; more. If you want to show the Thumbnail to the left and Summary to the no-float to float.</p>
<p><em>If you have not installed version 2.0 (never installed): </em></p>
<p>Go to Template &#8211; Edit HTML, Expand widget, go to <strong>&lt;data:post.body/&gt;</strong> card and replace it with the following code:</p>
<blockquote><p>&lt;b:if cond=&#8217;data:blog.pageType != &amp;quot;item&amp;quot;&#8217;&gt;<br />
&lt;div expr:id=&#8217;&amp;quot;summary&amp;quot; + data:post.id&#8217;&gt;&lt;data:post.body/&gt;&lt;/div&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;createSummaryAndThumb(&amp;quot;summary&lt;data:post.id/&gt;&amp;quot;);&lt;/script&gt;<br />
&lt;span class=&#8217;rmlink&#8217; style=&#8217;float:right&#8217;&gt;&lt;a expr:href=&#8217;data:post.url&#8217;&gt;&#8211;&amp;gt;đọc tiếp&#8230;&lt;/a&gt;&lt;/span&gt;<br />
&lt;/b:if&gt;<br />
&lt;b:if cond=&#8217;data:blog.pageType == &amp;quot;item&amp;quot;&#8217;&gt;&lt;data:post.body/&gt;&lt;/b:if&gt;</p></blockquote>
<p>In addition you must also code below into the HEAD (&lt;head&gt; &#8230; &lt;/ head&gt;) of the template:</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217;&gt;</p>
<p>var thumbnail_mode = &#8220;no-float&#8221; ;<br />
summary_noimg = 430;<br />
summary_img = 340;<br />
img_thumb_height = 100;<br />
img_thumb_width = 120;<br />
&lt;/script&gt;<br />
&lt;script src=&#8217;http://trongdai.net/summary-post-v20-test.js&#8217; type=&#8217;text/javascript&#8217;/&gt;</p></blockquote>
<p>Done.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/blogger-auto-readmore-script-ver30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto add &#8220;Read more&#8221; in Blogger 1.0</title>
		<link>http://www.w3code.net/auto-add-read-more-in-blogger/</link>
		<comments>http://www.w3code.net/auto-add-read-more-in-blogger/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:47:10 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[commentID]]></category>
		<category><![CDATA[postID]]></category>
		<category><![CDATA[Read more]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=92</guid>
		<description><![CDATA[Previously, I have introduced to you 2 ways to create Read More (Read more) link, 2 months also show quite effective and many people use. However, the use I noticed that the way has certain limitations. - 1 is we have to create the description and extension 1 manually (each article must be done). - [...]]]></description>
			<content:encoded><![CDATA[<p>Previously, I have introduced to you 2 ways to create Read More (Read more) link, 2 months also show quite effective and many people use. However, the use I noticed that the way has certain limitations.</p>
<p>- 1 is we have to create the description and extension 1 manually (each article must be done).<br />
- 2 is for the blog has many articles that have not used the Readmore Readmore later use is not possible, because we want to create readmore to edit all posts to prevent the separation described and expanded.</p>
<p>Here I will introduce you how to create 1 readmore entirely new, and fully automatic, since now we do not need to keep the description and expanded again, it will automatically divide us, and in the post we do not have the card &lt;span class=&#8221;fullpost&#8221;&gt; &lt;/ span&gt; again. This is a great way, because the blog has since used readmore old can use, including the blog readmore not use the old way, the message will be generated readmore.</p>
<p>Installation:</p>
<p>* If you have been using the old format readmore, please remove our code. If you do not know how to remove, please read the instructions on items as before, you will know what to remove any seats.</p>
<p>- At EditHTML, back up a backup XML</p>
<p>- Select Expand Widget Tempate</p>
<p>- Trying to &lt;data:post.body/&gt; card and replace it with the following code:</p>
<blockquote><p>&lt;b:if cond=&#8217;data:blog.pageType != &amp;quot;item&amp;quot;&#8217;&gt;<br />
&lt;div expr:id=&#8217;&amp;quot;summary&amp;quot; + data:post.id&#8217;/&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
var blogID = &amp;quot;<strong>92552551477455221</strong>&amp;quot;;<br />
function retriveSummaryPost&lt;data:post.id/&gt;(json){document.getElementById(&amp;quot;summary&lt;data:post.id/&gt;&amp;quot;).innerHTML<br />
= json.entry.summary.$t + &amp;quot;&#8230;&amp;quot;}</p>
<p>function createSummaryPost&lt;data:post.id/&gt;(POSTID){ var script =<br />
document.createElement(&amp;quot;script&amp;quot;);<br />
script.src = &amp;quot;http://www.blogger.com/feeds/&amp;quot;+blogID+&amp;quot;/posts/summary/&amp;quot;+POSTID+&amp;quot;?alt=json-in-script&amp;amp;callback=retriveSummaryPost&lt;data:post.id/&gt;&amp;quot;;<br />
script.type = &amp;quot;text/javascript&amp;quot;; document.getElementsByTagName(&amp;#39;head&amp;#39;)[0].appendChild(script);<br />
}<br />
&lt;/script&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
createSummaryPost&lt;data:post.id/&gt;(&amp;quot;&lt;data:post.id/&gt;&amp;quot;);<br />
&lt;/script&gt;<br />
&lt;span class=&#8217;rmlink&#8217; style=&#8217;float:right&#8217;&gt;&lt;a expr:href=&#8217;data:post.url&#8217;&gt;&#8211;&amp;gt;Read more&#8230;&lt;/a&gt;&lt;/span&gt;<br />
&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;</p></blockquote>
<p>Let&#8217;s see <strong>92552551477455221</strong> blogID you. You can read here how to get the ID number of the blog do not know.</p>
<p>* If your template has multiple additional hacks you can find out a lot of the data: post.body, so if you have to select the data: post.body to insert suitable for? Because each template and each hack many different points, so if you do not know how to insert only the comment below how to attach the address template (XML) are then I will research and guide you how to insert right.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/auto-add-read-more-in-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get: blogID, userID, postID, commentID</title>
		<link>http://www.w3code.net/how-to-get-blogid-userid-postid-commentid/</link>
		<comments>http://www.w3code.net/how-to-get-blogid-userid-postid-commentid/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:29:14 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[blogID]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[commentID]]></category>
		<category><![CDATA[postID]]></category>
		<category><![CDATA[userID]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=81</guid>
		<description><![CDATA[blogID, UserId, postID, commentID &#8230; are only few are paying attention to it but that is especially important to write code for development blogger. The blogger on the job often do not notice it and I also do not know where to find it! Some pro blogger widget or write code sometimes convenient to use [...]]]></description>
			<content:encoded><![CDATA[<p><strong>blogID, UserId, postID, commentID</strong> &#8230; are only few are paying attention to it but that is especially important to write code for development blogger. The blogger on the job often do not notice it and I also do not know where to find it! Some pro blogger widget or write code sometimes convenient to use the ID to this requires the user must know the ID to replace properly. This article purpose is only to help the blogger &#8220;and&#8221; how to find them.</p>
<p>After login to the site manager at <a target="_blank" href="http://www.blogger.com/home">http://www.blogger.com/home</a>, Dashboard page will appear, listed below all the existing blog, and the right information Profile your.<br />
- To get the blogID, you click on a menu Posts (red, image) of the blog, and look down to Status Bar, bottom of the browser, will see 1 link formatted as follows:</p>
<p><a target="_blank" href="http://www.blogger.com/posts.g?blogID=9988557115541 ">http://www.blogger.com/posts.g?blogID=<strong>9988557115541 </strong></a></p>
<p>easy to be your blogID is: <strong>9988557115541</strong></p>
<p>- To get UserId, you place a mouse View profile below your picture (red arrows in the image above), similar rà click and view the status bar of the browser, will see 1 link form as follows:</p>
<p>http://www.blogger.com/profile/<strong>0000875452145544 </strong></p>
<p>your userid is: <strong>0000875452145544</strong></p>
<p>- To get postID of 1 message is, we must open the message out. Stats click Post A Comment link below message also move then click the link below to view state, which after the word postID = Item is postID it. A blog with many articles to many different postID, postID represent messages.</p>
<p>- CommentID: you find.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/how-to-get-blogid-userid-postid-commentid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

