<?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>eBlog Tips &#187; save-templates</title>
	<atom:link href="http://www.eblogtips.com/tag/save-templates/feed" rel="self" type="application/rss+xml" />
	<link>http://www.eblogtips.com</link>
	<description>Blogging Tips, Guides, News, and Resources</description>
	<lastBuildDate>Wed, 08 Sep 2010 19:23:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Add Slide Show to Blogger Using Mootools</title>
		<link>http://www.eblogtips.com/how-to-add-slide-show-to-blogger-using-mootools.htm</link>
		<comments>http://www.eblogtips.com/how-to-add-slide-show-to-blogger-using-mootools.htm#comments</comments>
		<pubDate>Fri, 21 Aug 2009 20:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Resources]]></category>
		<category><![CDATA[below-code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[just-before]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[page-elements]]></category>
		<category><![CDATA[paste-it-just]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[script-type]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[your-image-address]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-add-slide-show-to-blogger-using-mootools.htm</guid>
		<description><![CDATA[ 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't Click on "Expand Widget Templates" 3.Scroll down to where you see ]]&#62;&#60;/b:skin&#62; tag: 4.Copy below code and paste it just before the ]]&#62;&#60;/b:skin&#62; tag. /* slideshow */ .sample{padding:20px 10px; margin:4px 0 25px 0; border:1px solid #e1e1e1} #box2{ position:absolute; } #box2 span{ display:block; float:left; } .buttons{text-align:center;padding:5px;} .buttons span{color:#0080FF;padding:0 5px;cursor:pointer;font:10px Verdana} .buttons span.active, .buttons span:hover{background:#0080FF;color:#fff} .mask2{ position:relative; width:240px; height:180px; overflow:hidden; } 5.Scroll down to where you see &#60;/head&#62; tag: 6.Copy below code and paste it just before the &#60;/head&#62; tag. &#60;!-- mootools --&#62; &#60;script src=' http://ajax.googleapis.com/ajax/libs/mootools/1.2.3/mootools.js ' type='text/javascript'/&#62; &#60;!-- Slideshow --&#62; &#60;script type='text/javascript'&#62; //&#60;![CDATA[ var noobSlide=new Class({initialize:function(a){this.items=a.items;this.mode=a.mode&#124;&#124;'horizontal';this.modes={horizontal:['left','width'],vertical:['top','height']};this.size=a.size&#124;&#124;240;this.box=a.box.setStyle(this.modes[this.mode][1],(this.size*this.items.length)+'px');this.button_event=a.button_event&#124;&#124;'click';this.handle_event=a.handle_event&#124;&#124;'click';this.onWalk=a.onWalk&#124;&#124;null;this.currentIndex=null;this.previousIndex=null;this.nextIndex=null;this.interval=a.interval&#124;&#124;5000;this.autoPlay=a.autoPlay&#124;&#124;false;this._play=null;this.handles=a.handles&#124;&#124;null;if(this.handles){this.addHandleButtons(this.handles)}this.buttons={previous:[],next:[],play:[],playback:[],stop:[]};if(a.addButtons){for(var b in a.addButtons){this.addActionButtons(b,$type(a.addButtons[b])=='array'?a.addButtons[b]:[a.addButtons[b]])}}this.fx=new Fx.Tween(this.box,$extend((a.fxOptions&#124;&#124;{duration:500,wait:false}),{property:this.modes[this.mode][0]}));this.walk((a.startItem&#124;&#124;0),true,true)},addHandleButtons:function(a){for(var i=0;i&#60;a.length;i++){a[i].addEvent(this.handle_event,this.walk.bind(this,[i,true]))}},addActionButtons:function(a,b){for(var i=0;i&#60;b.length;i++){switch(a){case'previous':b[i].addEvent(this.button_event,this.previous.bind(this,[true]));break;case'next':b[i].addEvent(this.button_event,this.next.bind(this,[true]));break;case'play':b[i].addEvent(this.button_event,this.play.bind(this,[this.interval,'next',false]));break;case'playback':b[i].addEvent(this.button_event,this.play.bind(this,[this.interval,'previous',false]));break;case'stop':b[i].addEvent(this.button_event,this.stop.bind(this));break}this.buttons[a].push(b[i])}},previous:function(a){this.walk((this.currentIndex&#62;0?this.currentIndex-1:this.items.length-1),a)},next:function(a){this.walk((this.currentIndex&#60;this.items.length-1?this.currentIndex+1:0),a)},play:function(a,b,c){this.stop();if(!c){this[b](false)}this._play=this[b].periodical(a,this,[false])},stop:function(){$clear(this._play)},walk:function(a,b,c){if(a!=this.currentIndex){this.currentIndex=a;this.previousIndex=this.currentIndex+(this.currentIndex&#62;0?-1:this.items.length-1);this.nextIndex=this.currentIndex+(this.currentIndex&#60;this.items.length-1?1:1-this.items.length);if(b){this.stop()}if(c){this.fx.cancel().set((this.size*-this.currentIndex)+'px')}else{this.fx.start(this.size*-this.currentIndex)}if(b&#38;&#38;this.autoPlay){this.play(this.interval,'next',true)}if(this.onWalk){this.onWalk((this.items[this.currentIndex]&#124;&#124;null),(this.handles&#38;&#38;this.handles[this.currentIndex]?this.handles[this.currentIndex]:null))}}}}); //]]&#62; &#60;/script&#62; &#60;script type='text/javascript'&#62; window.addEvent(&#39;domready&#39;,function(){ //SAMPLE 2 (transition: Bounce.easeOut) var nS2 = new noobSlide({ box: $(&#39;box2&#39;), items: [0,1,2,3,4,5,6.7], interval: 3000, fxOptions: { duration: 1000, transition: Fx.Transitions.Bounce.easeOut, wait: false }, addButtons: { previous: $(&#39;prev1&#39;), next: $(&#39;next1&#39;) } }); }); &#60;/script&#62; 7.Now Click on "Save Templates" 8.Now go to Layout--&#62; page elements and Click on 'Add a Gadget'. ]]></description>
			<content:encoded><![CDATA[<p> 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t Click on &#8220;Expand Widget Templates&#8221; 3.Scroll downbound to where you wager ]]&gt;&lt;/b:skin&gt; tag: 4.Copy beneath cipher and adhesive it meet before the ]]&gt;&lt;/b:skin&gt; tag. /* slideshow */ .sample{padding:20px 10px; margin:4px 0 25px 0; border:1px solidified #e1e1e1} #box2{ position:absolute; } #box2 span{ display:block; float:left; } .buttons{text-align:center;padding:5px;} .buttons span{color:#0080FF;padding:0 5px;cursor:pointer;font:10px Verdana} .buttons span.active, .buttons span:hover{background:#0080FF;color:#fff} .mask2{ position:relative; width:240px; height:180px; overflow:hidden; } 5.Scroll downbound to where you wager &lt;/head&gt; tag: 6.Copy beneath cipher and adhesive it meet before the &lt;/head&gt; tag. &lt;!&#8211; mootools &#8211;&gt; &lt;script src=&#8217; http://ajax.googleapis.com/ajax/libs/mootools/1.2.3/mootools.js &#8216; type=&#8217;text/javascript&#8217;/&gt; &lt;!&#8211; Slideshow &#8211;&gt; &lt;script type=&#8217;text/javascript&#8217;&gt; //&lt;![CDATA[ var noobSlide=new Class({initialize:function(a){this.items=a.items;this.mode=a.mode||'horizontal';this.modes={horizontal:['left','width'],vertical:['top','height']};this.size=a.size||240;this.box=a.box.setStyle(this.modes[this.mode][1],(this.size*this.items.length)+&#8217;px&#8217;);this.button_event=a.button_event||&#8217;click&#8217;;this.handle_event=a.handle_event||&#8217;click&#8217;;this.onWalk=a.onWalk||null;this.currentIndex=null;this.previousIndex=null;this.nextIndex=null;this.interval=a.interval||5000;this.autoPlay=a.autoPlay||false;this._play=null;this.handles=a.handles||null;if(this.handles){this.addHandleButtons(this.handles)}this.buttons={previous:[],next:[],play:[],playback:[],stop:[]};if(a.addButtons){for(var b in a.addButtons){this.addActionButtons(b,$type(a.addButtons[b])==&#8217;array&#8217;?a.addButtons[b]:[a.addButtons[b]])}}this.fx=new Fx.Tween(this.box,$extend((a.fxOptions||{duration:500,wait:false}),{property:this.modes[this.mode][0]}));this.walk((a.startItem||0),true,true)},addHandleButtons:function(a){for(var i=0;i&lt;a.length;i++){a[i].addEvent(this.handle_event,this.walk.bind(this,[i,true]))}},addActionButtons:function(a,b){for(var i=0;i&lt;b.length;i++){switch(a){case&#8217;previous&#8217;:b[i].addEvent(this.button_event,this.previous.bind(this,[true]));break;case&#8217;next&#8217;:b[i].addEvent(this.button_event,this.next.bind(this,[true]));break;case&#8217;play&#8217;:b[i].addEvent(this.button_event,this.play.bind(this,[this.interval,'next',false]));break;case&#8217;playback&#8217;:b[i].addEvent(this.button_event,this.play.bind(this,[this.interval,'previous',false]));break;case&#8217;stop&#8217;:b[i].addEvent(this.button_event,this.stop.bind(this));break}this.buttons[a].push(b[i])}},previous:function(a){this.walk((this.currentIndex&gt;0?this.currentIndex-1:this.items.length-1),a)},next:function(a){this.walk((this.currentIndex&lt;this.items.length-1?this.currentIndex+1:0),a)},play:function(a,b,c){this.stop();if(!c){this[b](false)}this._play=this[b].periodical(a,this,[false])},stop:function(){$clear(this._play)},walk:function(a,b,c){if(a!=this.currentIndex){this.currentIndex=a;this.previousIndex=this.currentIndex+(this.currentIndex&gt;0?-1:this.items.length-1);this.nextIndex=this.currentIndex+(this.currentIndex&lt;this.items.length-1?1:1-this.items.length);if(b){this.stop()}if(c){this.fx.cancel().set((this.size*-this.currentIndex)+&#8217;px&#8217;)}else{this.fx.start(this.size*-this.currentIndex)}if(b&amp;&amp;this.autoPlay){this.play(this.interval,&#8217;next&#8217;,true)}if(this.onWalk){this.onWalk((this.items[this.currentIndex]||null),(this.handles&amp;&amp;this.handles[this.currentIndex]?this.handles[this.currentIndex]:null))}}}}); //]]&gt; &lt;/script&gt; &lt;script type=&#8217;text/javascript&#8217;&gt; window.addEvent(&#39;domready&#39;,function(){ //SAMPLE 2 (transition: Bounce.easeOut) var nS2 = newborn noobSlide({ box: $(&#39;box2&#39;), items: [0,1,2,3,4,5,6.7], interval: 3000, fxOptions: { duration: 1000, transition: Fx.Transitions.Bounce.easeOut, wait: simulated }, addButtons: { previous: $(&#39;prev1&#39;), next: $(&#39;next1&#39;) } }); }); &lt;/script&gt; 7.Now Click on &#8220;Save Templates&#8221; 8.Now go to Layout&#8211;&gt; tender elements and Click on &#8216;Add a Gadget&#8217;. </p>
<p><a href="" class=""></a></p>
<p>Read more from the example source: <br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/ed6DJ8FXks0/slide-show-blogger-mootools-using.html" title="How To Add Slide Show to Blogger Using Mootools">How To Add Slide Show to Blogger Using Mootools</a></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-4632483279081719";
/* 468x60, created 8/9/09 */
google_ad_slot = "8220260904";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-add-slide-show-to-blogger-using-mootools.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add Beautiful Page Peel Effect with jQuery</title>
		<link>http://www.eblogtips.com/how-to-add-beautiful-page-peel-effect-with-jquery.htm</link>
		<comments>http://www.eblogtips.com/how-to-add-beautiful-page-peel-effect-with-jquery.htm#comments</comments>
		<pubDate>Fri, 21 Aug 2009 11:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[below-code]]></category>
		<category><![CDATA[brings-towards]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[expand-widget]]></category>
		<category><![CDATA[flip-on-hover]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[just-before]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[pageflip-img]]></category>
		<category><![CDATA[pageflip-msg]]></category>
		<category><![CDATA[paste-it-just]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[script-type]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-add-beautiful-page-peel-effect-with-jquery.htm</guid>
		<description><![CDATA[ 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't Click on "Expand Widget Templates" 3.Scroll down to where you see ]]&#62;&#60;/b:skin&#62; tag: 4.Copy below code and paste it just before the ]]&#62;&#60;/b:skin&#62; tag. #pageflip { position: relative; } #pageflip img { width: 50px; height: 52px; z-index: 99; position: absolute; right: 0; top: 0; -ms-interpolation-mode: bicubic; } #pageflip .msg_block { width: 50px; height: 50px; position: absolute; z-index: 50; right: 0; top: 0; background: url( http://2.bp.blogspot.com/_p4Te9Li52fs/So9Qb5J1yWI/AAAAAAAAAAU/8_mR7vt-tCw/subscribe.png ) no-repeat right top; text-indent: -9999px; } Note : Please host ' subscribe.png ' image yourself]]></description>
			<content:encoded><![CDATA[<p> 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t Click on &#8220;Expand Widget Templates&#8221; 3.Scroll downbound to where you wager ]]&gt;&lt;/b:skin&gt; tag: 4.Copy beneath cipher and adhesive it meet before the ]]&gt;&lt;/b:skin&gt; tag. #pageflip { position: relative; } #pageflip img { width: 50px; height: 52px; z-index: 99; position: absolute; right: 0; top: 0; -ms-interpolation-mode: bicubic; } #pageflip .msg_block { width: 50px; height: 50px; position: absolute; z-index: 50; right: 0; top: 0; background: url( http://2.bp.blogspot.com/_p4Te9Li52fs/So9Qb5J1yWI/AAAAAAAAAAU/8_mR7vt-tCw/subscribe.png ) no-repeat correct top; text-indent: -9999px; } Note : Please patron &#8216; subscribe.png &#8216; ikon yourself</p>
<p><a href="" class=""></a></p>
<p>Read more from the example source:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/-Ao_31ojcSo/beautiful-page-peel-effect-with.html" title="How To Add Beautiful Page politico Effect with jQuery">How To Add Beautiful Page politico Effect with jQuery</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-add-beautiful-page-peel-effect-with-jquery.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add jQuery Thumbnail Hover/Zoom Effect to blogger images</title>
		<link>http://www.eblogtips.com/how-to-add-jquery-thumbnail-hoverzoom-effect-to-blogger-images.htm</link>
		<comments>http://www.eblogtips.com/how-to-add-jquery-thumbnail-hoverzoom-effect-to-blogger-images.htm#comments</comments>
		<pubDate>Fri, 21 Aug 2009 09:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Resources]]></category>
		<category><![CDATA[absolute]]></category>
		<category><![CDATA[base-coordinate]]></category>
		<category><![CDATA[border-on-hover]]></category>
		<category><![CDATA[expand-widget]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[just-before]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[thumbnail-size]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-add-jquery-thumbnail-hoverzoom-effect-to-blogger-images.htm</guid>
		<description><![CDATA[ 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't Click on "Expand Widget Templates" 3.Scroll down to where you see ]]&#62;&#60;/b:skin&#62; tag: 4.Copy below code and paste it just before the ]]&#62;&#60;/b:skin&#62; tag. ul.thumb { float: left; list-style: none; margin: 0; padding: 10px; width: 360px; } ul.thumb li { margin: 0; padding: 5px; float: left; position: relative; /* Set the absolute positioning base coordinate */ width: 110px; height: 110px; } ul.thumb li img { width: 100px; height: 100px; /* Set the small thumbnail size */ -ms-interpolation-mode: bicubic; /* IE Fix for Bicubic Scaling */ border: 1px solid #ddd; padding: 5px; background: #f0f0f0; position: absolute; left: 0; top: 0; } ul.thumb li img.hover { background:url( http://4.bp.blogspot.com/_p4Te9Li52fs/So9a2fSh2jI/AAAAAAAAAAc/VX0mAW1oYHc/thumb_bg.png ) no-repeat center center; /* Image used as background on hover effect border: none; /* Get rid of border on hover */ } Note : Please host ' thumb_bg.png ' image yourself. 5.Scroll down to where you see &#60;/head&#62; tag: 6.Copy below code and paste it just before the &#60;/head&#62; tag. ]]></description>
			<content:encoded><![CDATA[<p> 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t Click on &#8220;Expand Widget Templates&#8221; 3.Scroll downbound to where you wager ]]&gt;&lt;/b:skin&gt; tag: 4.Copy beneath cipher and adhesive it meet before the ]]&gt;&lt;/b:skin&gt; tag. ul.thumb { float: left; list-style: none; margin: 0; padding: 10px; width: 360px; } ul.thumb li { margin: 0; padding: 5px; float: left; position: relative; /* Set the unconditional orientating humble number */ width: 110px; height: 110px; } ul.thumb li img { width: 100px; height: 100px; /* Set the diminutive thumbnail filler */ -ms-interpolation-mode: bicubic; /* IE Fix for Bicubic Scaling */ border: 1px solidified #ddd; padding: 5px; background: #f0f0f0; position: absolute; left: 0; top: 0; } ul.thumb li img.hover { background:url( http://4.bp.blogspot.com/_p4Te9Li52fs/So9a2fSh2jI/AAAAAAAAAAc/VX0mAW1oYHc/thumb_bg.png ) no-repeat edifice center; /* Image utilised as scenery on waver gist border: none; /* Get disembarrass of abut on waver */ } Note : Please patron &#8216; thumb_bg.png &#8216; ikon yourself. 5.Scroll downbound to where you wager &lt;/head&gt; tag: 6.Copy beneath cipher and adhesive it meet before the &lt;/head&gt; tag. </p>
<p>Read the original:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/V3FwEX4z6ts/jquery-thumbnail-hoverzoom-effect.html" title="How To Add jQuery Thumbnail Hover/Zoom Effect to blogger images">How To Add jQuery Thumbnail Hover/Zoom Effect to blogger images</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-add-jquery-thumbnail-hoverzoom-effect-to-blogger-images.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add jQuery Tooltips Effect To Blogger Links</title>
		<link>http://www.eblogtips.com/how-to-add-jquery-tooltips-effect-to-blogger-links.htm</link>
		<comments>http://www.eblogtips.com/how-to-add-jquery-tooltips-effect-to-blogger-links.htm#comments</comments>
		<pubDate>Thu, 20 Aug 2009 22:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Resources]]></category>
		<category><![CDATA[below-code]]></category>
		<category><![CDATA[easytooltip]]></category>
		<category><![CDATA[expand-widget]]></category>
		<category><![CDATA[icon-or-link]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[just-before]]></category>
		<category><![CDATA[paste-it-just]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[script-type]]></category>
		<category><![CDATA[that-contains]]></category>
		<category><![CDATA[your-url]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-add-jquery-tooltips-effect-to-blogger-links.htm</guid>
		<description><![CDATA[ Tooltips are small boxes that appear when you roll over an icon or Link that contains a brief text message identifying the object. 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't click on "Expand Widget Templates" 3.Scroll down to where you see ]]&#62;&#60;/b:skin&#62; tag: 4.Copy below code and paste it just before the ]]&#62;&#60;/b:skin&#62; tag. #easyTooltip{ padding:5px 10px; border:1px solid #EF6D21; background: #181C18; color:#E0EFE0; } 5.Scroll down to where you see &#60;/head&#62; tag: 6.Copy below code and paste it just before the &#60;/head&#62; tag. ]]></description>
			<content:encoded><![CDATA[<p> Tooltips are diminutive boxes that materialize when you listing over an picture or Link that contains a short book communication identifying the object. 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t utter on &#8220;Expand Widget Templates&#8221; 3.Scroll downbound to where you wager ]]&gt;&lt;/b:skin&gt; tag: 4.Copy beneath cipher and adhesive it meet before the ]]&gt;&lt;/b:skin&gt; tag. #easyTooltip{ padding:5px 10px; border:1px solidified #EF6D21; background: #181C18; color:#E0EFE0; } 5.Scroll downbound to where you wager &lt;/head&gt; tag: 6.Copy beneath cipher and adhesive it meet before the &lt;/head&gt; tag. </p>
<p><a href="" class=""></a></p>
<p>More:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/8d1ifobesZQ/jquery-tooltips-effect-to-blogger-links.html" title="How To Add jQuery Tooltips Effect To Blogger Links">How To Add jQuery Tooltips Effect To Blogger Links</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-add-jquery-tooltips-effect-to-blogger-links.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create jQuery Content Slider in Blogger</title>
		<link>http://www.eblogtips.com/how-to-create-jquery-content-slider-in-blogger.htm</link>
		<comments>http://www.eblogtips.com/how-to-create-jquery-content-slider-in-blogger.htm#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:11:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[paste-it-just]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[slidescontainer]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-create-jquery-content-slider-in-blogger.htm</guid>
		<description><![CDATA[ 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't Click on "Expand Widget Templates" 3.Scroll down to where you see ]]&#62;&#60;/b:skin&#62; tag: 4.Copy below code and paste it just before the ]]&#62;&#60;/b:skin&#62; tag. /* Slideshow style rules. */ #contentSlide { border: 1px solid #000; background:#212421; height:263px; padding:10px 0; } #slideshow { margin:0 auto; width:640px; height:263px; background:transparent url( http://lh6.ggpht.com/_dfnTVAxeWMI/SlTPJpS_axI/AAAAAAAABYA/JS60KVWJ9GQ/bg_slideshow.jpg ) no-repeat 0 0; position:relative; } #slideshow #slidesContainer { margin:0 auto; width:560px; height:263px; overflow:auto; /* allow scrollbar */ position:relative; } #slideshow #slidesContainer .slide { margin:0 auto; width:540px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */ height:263px; } .control { display:block; width:39px; height:263px; text-indent:-10000px; position:absolute; cursor: pointer; } #leftControl { top:0; left:0; background:transparent url( http://lh6.ggpht.com/_dfnTVAxeWMI/SlT8KH99FgI/AAAAAAAABZM/e9gXvHjzltU/control_left.jpg ) no-repeat 0 0; } #rightControl { top:0; right:0; background:transparent url( http://lh6.ggpht.com/_dfnTVAxeWMI/SlT8KMpFpxI/AAAAAAAABZQ/a207Rx0XuiU/control_right.jpg ) no-repeat 0 0; } .slide h2, .slide p { margin:15px; } .slide h2 { font:italic 24px Georgia, "Times New Roman", Times, serif; color:#212421; letter-spacing:-1px; } .slide img { float:right; margin:0 15px; padding: 1px; background-color: #212421; border: 1px solid #999; } 5.Scroll down to where you see &#60;/head&#62; tag: 6.Copy below code and paste it just before the &#60;/head&#62; tag. ]]></description>
			<content:encoded><![CDATA[<p> 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t Click on &#8220;Expand Widget Templates&#8221; 3.Scroll downbound to where you wager ]]&gt;&lt;/b:skin&gt; tag: 4.Copy beneath cipher and adhesive it meet before the ]]&gt;&lt;/b:skin&gt; tag. /* Slideshow call rules. */ #contentSlide { border: 1px solidified #000; background:#212421; height:263px; padding:10px 0; } #slideshow { margin:0 auto; width:640px; height:263px; background:transparent url( http://lh6.ggpht.com/_dfnTVAxeWMI/SlTPJpS_axI/AAAAAAAABYA/JS60KVWJ9GQ/bg_slideshow.jpg ) no-repeat 0 0; position:relative; } #slideshow #slidesContainer { margin:0 auto; width:560px; height:263px; overflow:auto; /* earmark scrollbar */ position:relative; } #slideshow #slidesContainer .slide { margin:0 auto; width:540px; /* turn by 20 pixels of #slidesContainer to refrain flat holograph */ height:263px; } .control { display:block; width:39px; height:263px; text-indent:-10000px; position:absolute; cursor: pointer; } #leftControl { top:0; left:0; background:transparent url( http://lh6.ggpht.com/_dfnTVAxeWMI/SlT8KH99FgI/AAAAAAAABZM/e9gXvHjzltU/control_left.jpg ) no-repeat 0 0; } #rightControl { top:0; right:0; background:transparent url( http://lh6.ggpht.com/_dfnTVAxeWMI/SlT8KMpFpxI/AAAAAAAABZQ/a207Rx0XuiU/control_right.jpg ) no-repeat 0 0; } .slide h2, .slide p { margin:15px; } .slide h2 { font:italic 24px Georgia, &#8220;Times New Roman&#8221;, Times, serif; color:#212421; letter-spacing:-1px; } .slide img { float:right; margin:0 15px; padding: 1px; background-color: #212421; border: 1px solidified #999; } 5.Scroll downbound to where you wager &lt;/head&gt; tag: 6.Copy beneath cipher and adhesive it meet before the &lt;/head&gt; tag. </p>
<p>See the rest here:Â <br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/qmldnTRylxE/create-jquery-content-slider-in-blogger.html" title="How To Create jQuery Content Slider in Blogger">How To Create jQuery Content Slider in Blogger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-create-jquery-content-slider-in-blogger.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add jQuery Text/Font Size Resizer to blogger</title>
		<link>http://www.eblogtips.com/how-to-add-jquery-textfont-size-resizer-to-blogger.htm</link>
		<comments>http://www.eblogtips.com/how-to-add-jquery-textfont-size-resizer-to-blogger.htm#comments</comments>
		<pubDate>Thu, 20 Aug 2009 11:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Resources]]></category>
		<category><![CDATA[below-code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[expand-widget]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[script-src]]></category>
		<category><![CDATA[script-type]]></category>
		<category><![CDATA[var-final]]></category>
		<category><![CDATA[var-string]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-add-jquery-textfont-size-resizer-to-blogger.htm</guid>
		<description><![CDATA[ 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't Click on " Expand Widget Templates " 3.Scroll down to where you see ]]&#62;&#60;/b:skin&#62; tag: 4.Copy below code and paste it just before the ]]&#62;&#60;/b:skin&#62; tag. /* resizeFont */ #resizeFont{ text-align:right; margin-right:10px; } 5.Scroll down to where you see &#60;/head&#62; tag: 6.Copy below code and paste it just before the &#60;/head&#62; tag. &#60;script src=' http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js ' type='text/javascript'/&#62; &#60;!-- begin ResizeFont --&#62; &#60;script type='text/javascript'&#62; $(function(){ $(&#39;input&#39;).click(function(){ var ourText = $(&#39;#content-wrapper&#39;); var currFontSize = ourText.css(&#39;fontSize&#39;); var finalNum = parseFloat(currFontSize, 10); var stringEnding = currFontSize.slice(-2); if(this.id == &#39;large&#39;) { finalNum *= 1.1; } else if (this.id == &#39;small&#39;){ finalNum /=1.1; } else if (this.id == &#39;reset&#39;){ finalNum =13; } ourText.animate({fontSize: finalNum + stringEnding},500); }); }); &#60;/script&#62; 7.Now Click on "Save Templates" 8.Now go to Layout--&#62; page elements and Click on 'Add a Gadget']]></description>
			<content:encoded><![CDATA[<p> 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t Click on &#8221; Expand Widget Templates &#8221; 3.Scroll downbound to where you wager ]]&gt;&lt;/b:skin&gt; tag: 4.Copy beneath cipher and adhesive it meet before the ]]&gt;&lt;/b:skin&gt; tag. /* resizeFont */ #resizeFont{ text-align:right; margin-right:10px; } 5.Scroll downbound to where you wager &lt;/head&gt; tag: 6.Copy beneath cipher and adhesive it meet before the &lt;/head&gt; tag. &lt;script src=&#8217; http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js &#8216; type=&#8217;text/javascript&#8217;/&gt; &lt;!&#8211; begin ResizeFont &#8211;&gt; &lt;script type=&#8217;text/javascript&#8217;&gt; $(function(){ $(&#39;input&#39;).click(function(){ var ourText = $(&#39;#content-wrapper&#39;); var currFontSize = ourText.css(&#39;fontSize&#39;); var finalNum = parseFloat(currFontSize, 10); var stringEnding = currFontSize.slice(-2); if(this.id == &#39;large&#39;) { finalNum *= 1.1; } added if (this.id == &#39;small&#39;){ finalNum /=1.1; } added if (this.id == &#39;reset&#39;){ finalNum =13; } ourText.animate({fontSize: finalNum + stringEnding},500); }); }); &lt;/script&gt; 7.Now Click on &#8220;Save Templates&#8221; 8.Now go to Layout&#8211;&gt; tender elements and Click on &#8216;Add a Gadget&#8217;</p>
<p><a href="" class=""></a></p>
<p>Read more from the example source:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/N6ES77niOVI/jquery-textfont-size-resizer-to-blogger.html" title="How To Add jQuery Text/Font Size Resizer to blogger">How To Add jQuery Text/Font Size Resizer to blogger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-add-jquery-textfont-size-resizer-to-blogger.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create jQuery Draggable Image in blogger</title>
		<link>http://www.eblogtips.com/how-to-create-jquery-draggable-image-in-blogger.htm</link>
		<comments>http://www.eblogtips.com/how-to-create-jquery-draggable-image-in-blogger.htm#comments</comments>
		<pubDate>Wed, 19 Aug 2009 11:55:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Resources]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[colour-code]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[expand-widget]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[just-before]]></category>
		<category><![CDATA[page-elements]]></category>
		<category><![CDATA[paste-it-just]]></category>
		<category><![CDATA[remember]]></category>
		<category><![CDATA[replace-blue]]></category>
		<category><![CDATA[save-templates]]></category>
		<category><![CDATA[script-src]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.eblogtips.com/how-to-create-jquery-draggable-image-in-blogger.htm</guid>
		<description><![CDATA[ 1.Login to your blogger dashboard--&#62; layout- -&#62; Edit HTML 2.Don't click on "Expand Widget Templates" 3.Scroll down to where you see &#60;/head&#62; tag: 4.Copy below code and paste it just before the &#60;/head&#62; tag. &#60;script src=' http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js ' type='text/javascript'/&#62; &#60;script src=' http://jqueryui.com/latest/ui/ui.core.js ' type='text/javascript'/&#62; &#60;script src=' http://jqueryui.com/latest/ui/ui.draggable.js ' type='text/javascript'/&#62; &#60;script type='text/javascript'&#62; $(document).ready(function(){ $(&#38;quot;.draggable&#38;quot;).draggable(); }); &#60;/script&#62; 5.Now Click on "Save Templates" 6.Now go to Layout--&#62; page elements and Click on 'Add a Gadget'. 7.Now Select 'HTML/Javascript' and add the code given below and click save. ]]></description>
			<content:encoded><![CDATA[<p> 1.Login to your blogger dashboard&#8211;&gt; layout- -&gt; Edit HTML 2.Don&#8217;t utter on &#8220;Expand Widget Templates&#8221; 3.Scroll downbound to where you wager &lt;/head&gt; tag: 4.Copy beneath cipher and adhesive it meet before the &lt;/head&gt; tag. &lt;script src=&#8217; http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js &#8216; type=&#8217;text/javascript&#8217;/&gt; &lt;script src=&#8217; http://jqueryui.com/latest/ui/ui.core.js &#8216; type=&#8217;text/javascript&#8217;/&gt; &lt;script src=&#8217; http://jqueryui.com/latest/ui/ui.draggable.js &#8216; type=&#8217;text/javascript&#8217;/&gt; &lt;script type=&#8217;text/javascript&#8217;&gt; $(document).ready(function(){ $(&amp;quot;.draggable&amp;quot;).draggable(); }); &lt;/script&gt; 5.Now Click on &#8220;Save Templates&#8221; 6.Now go to Layout&#8211;&gt; tender elements and Click on &#8216;Add a Gadget&#8217;. 7.Now Select &#8216;HTML/Javascript&#8217; and add the cipher presented beneath and utter save. </p>
<p>Read more here:Â <br />
<a target="_blank" href="http://feedproxy.google.com/~r/blogspot/WyNa/~3/iIP5pe99CuU/create-jquery-draggable-image-in.html" title="How To Create jQuery Draggable Image in blogger">How To Create jQuery Draggable Image in blogger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eblogtips.com/how-to-create-jquery-draggable-image-in-blogger.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

