<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3261648057722628801</id><updated>2012-01-30T02:12:07.791+07:00</updated><category term='design'/><category term='templates'/><category term='blogger'/><category term='FAQ'/><category term='freebies'/><category term='SEO'/><category term='Ajax'/><category term='ecommerce'/><title type='text'>SimplexDesign - free premium blogspot template</title><subtitle type='html'>boost your blogger to next level</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default?start-index=101&amp;max-results=100'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>218</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-8718435761692032747</id><published>2012-01-25T17:05:00.002+07:00</published><updated>2012-01-25T17:08:19.985+07:00</updated><title type='text'>New comment pagination - solution for posts with 200+ comments</title><content type='html'>If you are using Blogger default comment system (not threaded comment ) , you might see an error : comment pagination not shown for posts with 200+ comments .&lt;br /&gt;What is comment pagination ? Like numbered page navigation ,here is comment pagination :&lt;br /&gt;&lt;br /&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-1r3-zUkcjuA/Tx_TZ4_GLEI/AAAAAAAABGI/16xjABMSQjc/s1600/blogger-comment-pagination.gif" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Yes ,blogger team said that they has an API for comment pagination ,but I don't know why it doesn't work in my blog . For example , my post on Simplex Enews template has 250 comments ,and I added comment pagination code into template , but I see no comment pagination appear . It only show first 200 comments and their no way to move to the last 50 comments .&lt;br /&gt;So I decided to make it myself ,add a little javascript into template for comment pagination . Fortunately ,it work ,so I think it maybe helpful to you in case your blog use default comment system and your post has more than 200 comments :D&lt;br /&gt;&lt;br /&gt;Here are steps for making a comment pagination as I did ^^ pls backup before follow steps bellow ,because at least we have a way to comeback .&lt;br /&gt;&lt;br /&gt;1,Go to Dashboard - &amp;gt; Template -&amp;gt; Edit HTML .&lt;br /&gt;&lt;br /&gt;2,Add these line right before &lt;span style="color: red;"&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;#commentpaging {float:right;}&lt;br /&gt;#commentpaging a {margin-right:5px;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3,Add the code bellow before &lt;span style="color: red;"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;br /&gt;//&amp;lt;![CDATA[&lt;br /&gt;function commentpagination(url,comment){&lt;br /&gt;&amp;nbsp;var posturl= url;&lt;br /&gt;&amp;nbsp;var comment = comment;&lt;br /&gt;&amp;nbsp;cmpage = Math.ceil(comment/200);&lt;br /&gt;&amp;nbsp;document.write('&amp;lt;a href="'+posturl+'?commentPage=1"&amp;gt;Oldest&amp;lt;/a&amp;gt;');&lt;br /&gt;&amp;nbsp;for (var i = 1; i &amp;lt;= cmpage; i++) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.write('&amp;lt;a href="'+posturl+'?commentPage='+i+'"&amp;gt;'+i+'&amp;lt;/a&amp;gt;'); &lt;br /&gt;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;document.write('&amp;lt;a href="'+posturl+'?commentPage='+cmpage+'"&amp;gt;Latest&amp;lt;/a&amp;gt;');&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//]]&amp;gt;&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4, Find this line&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:includable id='comments' var='post'&amp;gt;&lt;/div&gt;and add these code right after the line above&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;span id='commentpaging'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Comment Page : &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;script type='text/javascript'&amp;gt;commentpagination(&amp;amp;quot;&amp;lt;data:post.url/&amp;gt;&amp;amp;quot;,&amp;amp;quot;&amp;lt;data:post.numComments/&amp;gt;&amp;amp;quot;);&amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/span&amp;gt;&lt;/div&gt;&lt;br /&gt;So here is what you got&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:includable id='comments' var='post'&amp;gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;span id='commentpaging'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Comment Page : &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;script type='text/javascript'&amp;gt;commentpagination(&amp;amp;quot;&amp;lt;data:post.url/&amp;gt;&amp;amp;quot;,&amp;amp;quot;&amp;lt;data:post.numComments/&amp;gt;&amp;amp;quot;);&amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/span&amp;gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;/div&gt;5,Save template . That's all .&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;How it work&lt;/h3&gt;&lt;br /&gt;First ,this script will take the number of comment in&amp;nbsp; a post ,and than divide by 200 . Round up the result to the nearest integer ,we will get the number of comment pages .&lt;br /&gt;For example ,if my post has 250 comments :&lt;br /&gt;250/200 = 1.25 -&amp;gt; round up -&amp;gt; 2&lt;br /&gt;So the comment page 1 contain first 200 comments and the comment page 2 contain the last 50 comments .&lt;br /&gt;The url to a comment page has structure :&lt;br /&gt;&lt;div style="color: red;"&gt;http:// post url .html?commentPage=comment page number&lt;/div&gt;for example ,here is the url of comment page 2 in my blog&lt;br /&gt;&lt;div style="color: red;"&gt;http://www.thesimplexdesign.com/2011/02/simplexenews-latest-version-fixed.html?commentPage=2&lt;/div&gt;&lt;br /&gt;When we get the number of comment page ,and comment page url structure ,the next step is very simple ,just write down all comment page with a loop statement .&lt;br /&gt;&lt;br /&gt;It's the way this code work . Hope this helpful to you&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-8718435761692032747?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/8718435761692032747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2012/01/new-comment-pagination-solution-for.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/8718435761692032747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/8718435761692032747'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2012/01/new-comment-pagination-solution-for.html' title='New comment pagination - solution for posts with 200+ comments'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-1r3-zUkcjuA/Tx_TZ4_GLEI/AAAAAAAABGI/16xjABMSQjc/s72-c/blogger-comment-pagination.gif' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-9219710599925381991</id><published>2011-12-26T10:51:00.000+07:00</published><updated>2011-12-26T10:53:25.591+07:00</updated><title type='text'>Create a video slideshow in sidebar</title><content type='html'>In SimplexBlognews ,Simplex Enews templates and many other templates ,there's a widget for embedding video . You can insert one video from video service to this sidebar by inserting the embed code right into widget content .&lt;br /&gt;But we want a slideshow for video in this widget ,is it possible ?&lt;br /&gt;Yes,it's possible . We can make a small slideshow for video in this widget .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-eo1qFkvZ9QM/TvfuqBb7MzI/AAAAAAAABF0/59EkBgOUqu8/s1600/slidevideo.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/-eo1qFkvZ9QM/TvfuqBb7MzI/AAAAAAAABF0/59EkBgOUqu8/s320/slidevideo.png" width="308" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;a href="https://github.com/nathansearles/loopedSlider/tree/master/loopedslider0.5.7"&gt;Download Loopedslider js&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;Want a demo ? Please see in &lt;span style="font-size: large;"&gt;&lt;a href="http://simplexenews1.blogspot.com/"&gt;Demo of SimplexEnews template&lt;/a&gt;&lt;/span&gt; ,I added a slideshow for video in the right sidebar.&lt;br /&gt;&lt;h3&gt;How to do ? &lt;/h3&gt;&lt;b&gt;Do backup before make anychanges&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1,Go to Dashboard -&amp;gt;Design - &amp;gt;Edit HTML &lt;br /&gt;&lt;br /&gt;2,Upload Looped slider script in your host or host them in blogger .&lt;br /&gt;&lt;br /&gt;3,Add script of Jquery framework right after &amp;lt;/head&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;script src='http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js' type='text/javascript'/&amp;gt; &lt;/div&gt;&amp;nbsp;After this line ,add script of looped slider .&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;script src="your_host............./loopedslider.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/div&gt;&lt;br /&gt;4,Add the script to activate loopedslider in the end of template ,right before &amp;lt;/body&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$('.slides1').cycle({ &lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;fx:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fade', &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;speed:&amp;nbsp; 'slow', &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;timeout: 3000, &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;pager:&amp;nbsp; '.pagination' &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;});&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/script&amp;gt;&lt;/div&gt;&lt;br /&gt;5,Add the CSS code right before &lt;span style="color: red;"&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;.slides1 { position:absolute; top:0; left:0; }&lt;/div&gt;&lt;div style="color: red;"&gt;.slides1 div { position:absolute; top:0; width:500px; display:none; }&lt;/div&gt;&lt;br /&gt;You can add or remove CSS code to make the slide display as you want .&lt;br /&gt;&lt;br /&gt;6,Save changes .&lt;br /&gt;&lt;br /&gt;7,Go to Page Elements ,Click on edit link sidebar widget which you want to add video slideshow ,or create a new HTML/Javascript widget .&lt;br /&gt;Paste the HTML markup as structure bellow :&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;ul class="slides1"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; .............video embed code .............&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; ................video embed code ..................&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;br /&gt;&amp;lt;li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; ..................video embed code .............&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul class="pagination"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;&lt;/div&gt;&lt;br /&gt;Save changes .&lt;br /&gt;&lt;br /&gt;10,Back to blog and see the result .&lt;br /&gt;&lt;br /&gt;That's all for video slideshow in sidebar . I hope it helpful to you . Free to leave comment here&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-9219710599925381991?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/9219710599925381991/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/12/create-video-slideshow-in-sidebar.html#comment-form' title='24 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/9219710599925381991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/9219710599925381991'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/12/create-video-slideshow-in-sidebar.html' title='Create a video slideshow in sidebar'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-eo1qFkvZ9QM/TvfuqBb7MzI/AAAAAAAABF0/59EkBgOUqu8/s72-c/slidevideo.png' height='72' width='72'/><thr:total>24</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-964873971037517674</id><published>2011-12-23T10:24:00.000+07:00</published><updated>2011-12-23T10:24:36.321+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebies'/><title type='text'>Christmas icon packs for web designer in holiday season</title><content type='html'>Have you redesign your web/blog in this holiday season ? In this post ,I will show you some icon packs that good for Xmas . These collections are collected from various sources . Hope them helpful to you .&lt;br /&gt;1,&lt;br /&gt;&lt;h3&gt;Free Christmas Icons&lt;/h3&gt;&lt;a href="http://designmodo.com/free-christmas-icons-set/" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71431" height="483" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/ab325_125.jpg" width="500" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2,&lt;br /&gt;&lt;h3&gt;Christmas Icon Sets&lt;/h3&gt;&lt;a href="http://www.smashingmagazine.com/2008/12/17/smashing-christmas-icon-sets/" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71432" height="504" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/7bc91_217.jpg" width="500" /&gt;&amp;nbsp;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3,&lt;br /&gt;&lt;h3&gt;Christmas icons&lt;/h3&gt;&lt;a href="http://www.iconshock.com/christmas-icons/" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71436" height="1111" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/7bc91_66.jpg" width="500" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4,&lt;br /&gt;&lt;h3&gt;Snowmen Icons&lt;/h3&gt;&lt;a href="http://dapinographics.com/snowmen-icons" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71437" height="413" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/7bc91_76.jpg" width="500" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;5,&lt;br /&gt;&lt;h3&gt;Winter Holiday Icons&lt;/h3&gt;&lt;a href="http://icondrawer.com/free.php" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71441" height="267" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/7bc91_1110.jpg" width="500" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;6,&lt;br /&gt;&lt;h3&gt;Xmas Icons&lt;/h3&gt;&lt;a href="http://iconka.com/2009/11/30/370/" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71442" height="245" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/7bc91_126.jpg" width="500" /&gt;&amp;nbsp;&lt;/a&gt;&lt;br /&gt;&lt;span id="more-16302"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;7,&lt;br /&gt;&lt;h3&gt;Comment&lt;/h3&gt;&lt;a href="http://enhancedlabs.com/index.php/labnotes/comments/the_real_christmas_05_reloaded/" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon5.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;8,&lt;br /&gt;&lt;h3&gt;Christmas Mini Pack&lt;/h3&gt;&lt;a href="http://arrioch.deviantart.com/art/Christmas-Mini-Pack-44526821" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon4.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;9,&lt;br /&gt;&lt;h3&gt;Christmas Icons&lt;/h3&gt;&lt;a href="http://cooliojulio.deviantart.com/art/Christmas-Icons-45247012" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon6.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;10,&lt;br /&gt;&lt;h3&gt;Christmas Social Icons&lt;/h3&gt;&lt;a href="http://noctuline.deviantart.com/art/Christmas-Social-Icons-191030032" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon7.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;11,&lt;br /&gt;&lt;h3&gt;Holiday Seasonal Icons&lt;/h3&gt;&lt;a href="http://www.tutorial9.net/downloads/free-icon-pack-holiday-seasonal-icons/" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon8.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;12,&lt;br /&gt;&lt;h3&gt;White Animals Icons&lt;/h3&gt;&lt;a href="http://dapinographics.com/white-animals-icons" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon9.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;13,&lt;br /&gt;&lt;h3&gt;Social Nomnomnom&lt;/h3&gt;&lt;a href="http://iconka.com/free/#" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon11.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;14,&lt;br /&gt;&lt;h3&gt;Harry Potter And The Bitten Apple&lt;/h3&gt;&lt;a href="http://iconka.com/free/#" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon12.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;15,&lt;br /&gt;&lt;h3&gt;Snowmen Icons&lt;/h3&gt;&lt;a href="http://dapinographics.com/snowmen-icons" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon10.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;16,&lt;br /&gt;&lt;h3&gt;Pool&lt;/h3&gt;&lt;a href="http://iconka.com/free/#" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon13.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;17,&lt;br /&gt;&lt;h3&gt;Christmas icons&lt;/h3&gt;&lt;a href="http://www.iconshock.com/christmas-icons/" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon14.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;18,&lt;br /&gt;&lt;h3&gt;Articles&lt;/h3&gt;&lt;a href="http://www.icojoy.com/articles/50/" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon17.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;19,&lt;br /&gt;&lt;h3&gt;Christmas Icons 2&lt;/h3&gt;&lt;a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=436" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon18.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;20,&lt;br /&gt;&lt;h3&gt;Lontar Eve&lt;/h3&gt;&lt;a href="http://www.zeusboxstudio.com/icon/?pg=2" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon19.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;21,&lt;br /&gt;&lt;h3&gt;Christmas icons&lt;/h3&gt;&lt;a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=129" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon20.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;22,&lt;br /&gt;&lt;h3&gt;Christmas Icons 2007&lt;/h3&gt;&lt;a href="http://gakuseisean.deviantart.com/art/Christmas-Icons-2007-72403640" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon21.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;23,&lt;br /&gt;&lt;h3&gt;Christmas icon&lt;/h3&gt;&lt;a href="http://kidaubis.deviantart.com/art/2009-Christmas-icon-107043505" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon22.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;24,&lt;br /&gt;&lt;h3&gt;Christmas Icons&lt;/h3&gt;&lt;a href="http://aroche.deviantart.com/art/Christmas-Icons-150015190" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon23.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;25,&lt;br /&gt;&lt;h3&gt;My Christmas&lt;/h3&gt;&lt;a href="http://harwenzhang.deviantart.com/art/My-Christmas-110756508" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon25.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;26,&lt;br /&gt;&lt;h3&gt;Blogger Xmas Logo Icons&lt;/h3&gt;&lt;a href="http://tayzar44.deviantart.com/art/Blogger-Xmas-Logo-Icons-72306134" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon26.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;27,&lt;br /&gt;&lt;h3&gt;Xmas pack&lt;/h3&gt;&lt;a href="http://blackblurrr.deviantart.com/art/xmas-pack-44816020" target="_blank"&gt;&lt;img alt="" border="0" class="alignnone" src="http://www.webdesigncore.com/wp-content/uploads/2011/12/christmasicon27.jpg" width="550" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;28,&lt;br /&gt;&lt;h3&gt;Icon&lt;/h3&gt;&lt;a href="http://www.iconarchive.com/show/plastic-new-year-icons-by-painticon.html" rel="nofollow" target="_blank"&gt;&lt;img alt="" class="aligncenter size-full wp-image-71438" height="260" src="http://www.joomvision.com/wp-content/plugins/rss-poster-pro/cache/7bc91_86.jpg" width="500" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-964873971037517674?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/964873971037517674/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/12/christmas-icon-packs-for-web-designer.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/964873971037517674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/964873971037517674'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/12/christmas-icon-packs-for-web-designer.html' title='Christmas icon packs for web designer in holiday season'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-4206295754790645086</id><published>2011-12-19T14:40:00.000+07:00</published><updated>2011-12-19T14:40:55.782+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Unlimited hosting for scripts in blogger template</title><content type='html'>Many many of you complaint my host 110mb.com not working . Yes ,it's not a stable and reliable free hosting . So in this post ,I will tell you solution to fix this problem .&amp;nbsp; The idea is very simple , we can host scripts in blogger itself .&lt;br /&gt;This solution will make your template hard to read ,not good for SEO (as SEO expert said) because we included all scripts in template file . But hosting scripts in blogger will increase the loading speed ,and it work 100% ,don't need to worry about downtime .&lt;br /&gt;&lt;h3&gt;How to do ?&lt;/h3&gt;&lt;br /&gt;1,If you are using a template from SimplexDesign ,open template in a word editor such as notepad ,wordpad ,notepad ++ ...&lt;br /&gt;&lt;br /&gt;2,Make a search for this term &lt;span style="color: red;"&gt;&amp;lt;script&lt;/span&gt; ,it will show you all the place where scripts are embedded to your template .&lt;br /&gt;Take a closer look ,if the script is hosted in another host , you will see something like this :&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script src='http://hosting....../xxxx.js' type='text/javascript'/&amp;gt;&lt;/span&gt;&lt;br /&gt;The &lt;span style="color: red;"&gt;src&lt;/span&gt; attribute in &lt;span style="color: red;"&gt;&amp;lt;script&lt;/span&gt; statement above indicate the URL of javascript file .&lt;br /&gt;Copy this URL &lt;span style="color: red;"&gt;http://hosting....../xxxx.js &lt;/span&gt;and paste it in browser window&lt;br /&gt;&lt;br /&gt;&lt;img border="0" height="126" src="http://2.bp.blogspot.com/-oeXsV-FLNPs/Tu7qCEZAeGI/AAAAAAAABFg/GVAEKCOJkuM/s320/url.png" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;It will show you the content of js file as picture above ,or a dialog which asking for download js file .&lt;br /&gt;If you download the js file ,open it in a word editor &lt;br /&gt;&lt;br /&gt;3,Insert the script in js file into blogger template by using this structure :&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;//&amp;lt;![CDATA[&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;insert content of js file here&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;............&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;//]]&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;After inserting the script to blogger directly ,delete the line&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script src='http://hosting....../xxxx.js' type='text/javascript'/&amp;gt;&lt;/span&gt;&lt;br /&gt;that we found in step 2 .&lt;br /&gt;Do this for the rest .&lt;br /&gt;&lt;br /&gt;4,Save template and upload it to blogger .&lt;br /&gt;That's all .&lt;br /&gt;I hope with this tip ,we can forget the problem with free javascript hosting . Yes,if you have a hosting ,you can host js file in your host ,it better for SEO .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-4206295754790645086?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/4206295754790645086/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/12/unlimited-hosting-for-scripts-in.html#comment-form' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4206295754790645086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4206295754790645086'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/12/unlimited-hosting-for-scripts-in.html' title='Unlimited hosting for scripts in blogger template'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-oeXsV-FLNPs/Tu7qCEZAeGI/AAAAAAAABFg/GVAEKCOJkuM/s72-c/url.png' height='72' width='72'/><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-2959588064636183823</id><published>2011-12-06T10:11:00.000+07:00</published><updated>2011-12-06T10:11:32.443+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>SimplexDesign got a new domain and email address</title><content type='html'>&lt;img border="0" src="http://4.bp.blogspot.com/-NCqDyHJRXjk/TWzFmSBOBrI/AAAAAAAAA6Y/vO8hU2PtVl8/logopa.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;After two year working ,I decided to add a new domain for SimplexDesign blog ,that will make it more professional and easy for the development in the future . The new domain is :&lt;br /&gt;&lt;div style="color: red; text-align: center;"&gt;&lt;span style="font-size: large;"&gt;http://thesimplexdesign.com&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;I think it easy to remember and not so far from the domain we all known http://simplexdesign.blogspot.com . &lt;/div&gt;&lt;div style="text-align: left;"&gt;You may ask me what happen to .blogspot.com domain ? Oh ,yes ,it still alive and you can still access SimplexDesign blog with this domain . All post links ,backlinks to this domain are remained ,not broken . So if you have a link back to SimplexDesign ,don't worry about it .&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;A new thing is the contact email . From now,lease send / forward all emails (request templates ,questions ,comments ,suggestions ....) to this email :&lt;/div&gt;&lt;div style="color: red; text-align: center;"&gt;&lt;span style="font-size: large;"&gt;Admin@thesimplexdesign.com&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;This email is very easy to remember and separated from my personal email : contact.dinhquanghuy@gmail.com , so your emails will not be flooded in other emails of mine ,and I can answer you faster .&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;Facebook for SimplexDesign ,oh ,I want to repeat this facebook again :&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: red; text-align: center;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: large;"&gt;http://www.facebook.com/simplexdesignblog&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;In case you want to receive update via Twitter ,please follow :&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: red; text-align: center;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: large;"&gt;http://twitter.com/dinhquanghuy&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;That's all new today :D thanks for support me all the time ,and hope you keep supporting me in the future .&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: large;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-2959588064636183823?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/2959588064636183823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/12/simplexdesign-got-new-domain-and-email.html#comment-form' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2959588064636183823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2959588064636183823'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/12/simplexdesign-got-new-domain-and-email.html' title='SimplexDesign got a new domain and email address'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-NCqDyHJRXjk/TWzFmSBOBrI/AAAAAAAAA6Y/vO8hU2PtVl8/s72-c/logopa.jpg' height='72' width='72'/><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-5695228841007077540</id><published>2011-11-23T10:51:00.002+07:00</published><updated>2011-11-23T10:54:41.756+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Image zooming plugin</title><content type='html'>Sometime ,we need a bigger and detailed version of an image ,but size of image is limited by post frame . So we can do a zoom function for image . For example ,you have a blog that selling children apparel . Because of the limitation of post frame ,if we add a big image ,it will break out the layout .If we add a small size image ,it's hard for buyer to see product in detail . It's time for zooming function .&lt;br /&gt;&lt;br /&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-ASJhevZ10Co/TsxrgidqpCI/AAAAAAAABFI/JxbCueEaDqs/s1600/zoom.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://www.box.com/s/0jtsftbb3u9q9cn6ntj0"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Installing this script is not different to lightbox effect .&lt;br /&gt;Now let's start&lt;br /&gt;1,Download the script files and upload to your hosting . This step is required because I have no hosting in hand now .&lt;br /&gt;&lt;br /&gt;2,Now add these line bellow before &amp;lt;body&amp;gt;  &lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;link href="/styles/cloud-zoom.css" rel="stylesheet" type="text/css" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type="text/JavaScript" src="/js/cloud-zoom.1.0.2.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3,How to use&lt;br /&gt;In blog posting window ,after inserting image ,click on edit HTML ,and edit the HTML code of image to this form&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;a href="bigimage.jpg" class="cloud-zoom" rel="option goes here ........."&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img&amp;nbsp; src="smallimage.jpg" title="Optional title display" &amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;Bigimage.JPG&lt;/b&gt; is the big and detail version of image&lt;br /&gt;&lt;b&gt;Smallimage.JPG&lt;/b&gt; is the small version of image&lt;br /&gt;Class '&lt;b&gt;&lt;span style="color: red;"&gt;cloud-zoom&lt;/span&gt;&lt;/b&gt;' is required .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4,If your blog has a line for calling jquery framework ,do not add more&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;script type='text/javascript' src='js/jquery.js'&amp;gt;&amp;lt;/script&amp;gt;  &lt;/div&gt;because more than one jquery calling can make all script stop .&lt;br /&gt;&lt;br /&gt;5,Options can be set by adding into rel attribute . I marked where to put option by the text "option go here" in the step 3 . Each option is separated by a comma ( , ) .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Here is the list of options&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;zoomWidth :&lt;/b&gt;  The width of the zoom window in pixels. If 'auto' is specified, the width will be the same as the small image .&lt;/li&gt;&lt;li&gt;&lt;b&gt;zoomHeight&lt;/b&gt;  : The height of the zoom window in pixels. If 'auto' is specified, the height will be the same as the small image.&lt;/li&gt;&lt;li&gt;&lt;b&gt;position&lt;/b&gt; : Specifies the position of the zoom window relative to the small image. Allowable values are 'left', 'right', 'top', 'bottom', 'inside' or you can specifiy the id of an html element to place the zoom window in e.g. position: 'element1' &lt;/li&gt;&lt;li&gt;&lt;b&gt;adjustX :  &lt;/b&gt;Allows you to fine tune the x-position of the zoom window in pixels. &lt;/li&gt;&lt;li&gt;&lt;b&gt;adjustY&lt;/b&gt; :&amp;nbsp;  Allows you to fine tune the y-position of the zoom window in pixels. &lt;/li&gt;&lt;li&gt;&lt;b&gt;tint&lt;/b&gt;  Specifies a tint colour which will cover the small image. Colours should be specified in hex format, e.g. '#aa00aa'. Does not work with softFocus.&lt;/li&gt;&lt;li&gt;&lt;b&gt;tintOpacity&lt;/b&gt; :&amp;nbsp;  Opacity of the tint, where 0 is fully transparent, and 1 is fully opaque . &lt;/li&gt;&lt;li&gt;&lt;b&gt;lensOpacity&lt;/b&gt; :&amp;nbsp; Opacity of the lens mouse pointer, where 0 is fully transparent, and 1 is fully opaque. In tint and soft-focus modes, it will always be transparent. &lt;/li&gt;&lt;li&gt;&lt;b&gt;softFocus&lt;/b&gt; :  Applies a subtle blur effect to the small image. Set to true or false. Does not work with tint. &lt;/li&gt;&lt;li&gt;&lt;b&gt;smoothMove : &lt;/b&gt;Amount of smoothness/drift of the zoom image as it moves. The higher the number, the smoother/more drifty the movement will be. 1 = no smoothing. &lt;/li&gt;&lt;li&gt;&lt;b&gt;showTitle&lt;/b&gt; :  Shows the title tag of the image. True or false.  true&lt;/li&gt;&lt;li&gt;&lt;b&gt;titleOpacity&lt;/b&gt;  : Specifies the opacity of the title if displayed, where 0 is fully transparent, and 1 is fully opaque.&amp;nbsp;&lt;/li&gt;&lt;/ul&gt;That's all for zooming . I hope it helpful to you .&amp;nbsp; &lt;br /&gt;&lt;ul&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-5695228841007077540?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/5695228841007077540/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/11/image-zooming-plugin.html#comment-form' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5695228841007077540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5695228841007077540'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/11/image-zooming-plugin.html' title='Image zooming plugin'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-ASJhevZ10Co/TsxrgidqpCI/AAAAAAAABFI/JxbCueEaDqs/s72-c/zoom.png' height='72' width='72'/><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-3901616186330995724</id><published>2011-11-10T14:47:00.000+07:00</published><updated>2011-11-10T14:47:54.493+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>SimplexLinepress - blogger version of Linepress template</title><content type='html'>Some readers asked me for a blogger version of Linepress template (from Gabfire) . After a long time ,now I want to show you the result . It's good for a magazine or news portal . Hope you all like this .&lt;br /&gt;&lt;img border="0" height="640" src="http://4.bp.blogspot.com/-x1h7SERNNCI/Trt31P6T_EI/AAAAAAAABC4/FMgXVNNO5UE/s640/simplextest11_1320908682395.png" width="313" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://simplextest11.blogspot.com/"&gt;Live Demo&lt;/a&gt; | &lt;a href="http://www.box.net/shared/hgqvfydxk84c5tg2ehtq"&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;h3&gt;How to install this template&lt;/h3&gt;1,Download the template .&lt;br /&gt;&lt;br /&gt;2,Open the template file in any word editor . I recommend Notepad ++ for easy in editing .&lt;br /&gt;&lt;br /&gt;3,To add social network account&lt;br /&gt;&lt;img border="0" height="48" src="http://4.bp.blogspot.com/-xRSQRkGuLRs/Trt5OMLGbzI/AAAAAAAABDA/hgDf2re5ipI/s400/social.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;Find this code :&lt;br /&gt;&lt;br /&gt;&lt;span style="background-color: white; color: red;"&gt;&amp;lt;div id="submenu"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul class="subnav"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a title="Subscribe to latest posts in RSS" rel="nofollow" href="/feeds/posts/default" class="gab_rss" target="_blank"&amp;gt;RSS for Entries&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a title="Subscribe to latest posts via email" rel="nofollow" href="&lt;b&gt;http://feedburner.google.com/fb/a/mailverify?uri=simplex&lt;/b&gt;" class="gab_email" target="_blank"&amp;gt;Subscribe via E-mail&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a title="follow on twitter" rel="nofollow" href="&lt;b&gt;http://www.twitter.com/dinhquanghuy&lt;/b&gt;" class="gab_twitter" target="_blank"&amp;gt;Follow on Twitter&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a title="Connect on facebook" rel="nofollow" href="&lt;b&gt;http://www.facebook.com/simplexdesignblog&lt;/b&gt;" class="gab_facebook" target="_blank"&amp;gt;Connect on Facebook&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and change the link in bold to your social network and feed burner accounts .&lt;br /&gt;&lt;br /&gt;4,Save template and upload to blogger .&lt;br /&gt;&lt;br /&gt;5,Go to page elements .&lt;br /&gt;&lt;br /&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-tt2IR_dat-Y/Trt57jS5AwI/AAAAAAAABDI/OQzY7VcxbtY/pageelement.png" /&gt;&lt;br /&gt;&lt;br /&gt;6,To add logo&lt;br /&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-e1lk2xLugws/Trt66nO8HdI/AAAAAAAABDQ/8i0veMzxE2c/s1600/logo.png" /&gt;&lt;br /&gt;&lt;br /&gt;click on logo widget&lt;br /&gt;&lt;img border="0" height="72" src="http://3.bp.blogspot.com/-v-MQjvfu1zM/Trt6_dtBxkI/AAAAAAAABDY/QsZd19ETRKg/s640/logo1.png" width="640" /&gt;&lt;br /&gt;and add your logo into widget content as structure&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;img src="your logo url"/&amp;gt;&lt;/div&gt;&lt;br /&gt;like picture bellow&lt;br /&gt;&lt;img border="0" height="552" src="http://2.bp.blogspot.com/-gOFQixEmVGk/Trt7CPu_EaI/AAAAAAAABDg/nkXa5Bup-0E/s640/logo2.png" width="640" /&gt;&lt;br /&gt;&lt;br /&gt;7,To add item to main menu navigation&lt;br /&gt;&lt;img border="0" height="114" src="http://2.bp.blogspot.com/-K_8cdEcHxE8/Trt8xkFWgPI/AAAAAAAABDo/Dpf1X5XTvvM/s640/menunav.png" width="640" /&gt;&lt;br /&gt;&lt;br /&gt;click on 'menunav' widget&lt;br /&gt;&lt;img border="0" height="38" src="http://4.bp.blogspot.com/-sdKN0W8D__k/Trt86z5HQBI/AAAAAAAABD0/SkSp6pTuYe0/s640/menunav1.png" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;add link to your categories&lt;br /&gt;&lt;img border="0" height="232" src="http://3.bp.blogspot.com/-2XKWMaVLz7M/Trt9DgQ_8AI/AAAAAAAABEA/dQstyGn5XFw/s320/menunav2.png" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8,To add content in 'teaser' section&lt;br /&gt;&lt;img border="0" height="139" src="http://1.bp.blogspot.com/-Th9eFvC0c_s/Trt929XoeuI/AAAAAAAABEM/KcFySP-t6qs/s640/teaser.png" width="640" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;click on teaser widget&lt;br /&gt;&lt;img border="0" height="75" src="http://3.bp.blogspot.com/-kuF4ofdSJMs/Trt-H-qyd2I/AAAAAAAABEY/-3jYJjymhbE/s640/teaser1.png" width="640" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;add the category name into widget content&lt;br /&gt;&lt;img border="0" height="356" src="http://2.bp.blogspot.com/-lJGpVX-Se2Y/Trt-P060gmI/AAAAAAAABEg/3qmUhU2YmDA/s400/teaser2.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;Do the same for 'teaser','featureright','mediabar','primarybottomleft' widget&lt;br /&gt;&lt;br /&gt;9,To add content in the tab &lt;br /&gt;&lt;img border="0" height="307" src="http://3.bp.blogspot.com/-D5MR1TdtEsc/Trt-02CjZZI/AAAAAAAABEo/lu9JrD1g11Y/s400/tab.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;click on each widgets from 'priBottab1','priBottab2','priBottab3','priBotab4'&lt;br /&gt;&lt;img border="0" height="142" src="http://1.bp.blogspot.com/-h1TxbzD4SnI/Trt_Da5gC_I/AAAAAAAABEw/xPyl2xv8ob0/s400/tab1.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;add the category name into widget content ,add the name of category into widget title.&lt;br /&gt;&lt;img border="0" height="340" src="http://2.bp.blogspot.com/-BCfG3XAWF48/Trt_Ou2SXUI/AAAAAAAABE4/KQOfR4N3KYw/s400/tab2.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;10,Other widgets can be edit as you want . You can add script into widget content (ads ,video embed ...)&lt;br /&gt;&lt;br /&gt;11,You can add or remove or move widgets in anyplace as you want .&lt;br /&gt;&lt;br /&gt;Save changes . That's all for this template .&lt;br /&gt;&lt;br /&gt;I hope this template work fine for you .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-3901616186330995724?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/3901616186330995724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/11/simplexlinepress-blogger-version-of.html#comment-form' title='47 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3901616186330995724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3901616186330995724'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/11/simplexlinepress-blogger-version-of.html' title='SimplexLinepress - blogger version of Linepress template'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-x1h7SERNNCI/Trt31P6T_EI/AAAAAAAABC4/FMgXVNNO5UE/s72-c/simplextest11_1320908682395.png' height='72' width='72'/><thr:total>47</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-2220487655444404871</id><published>2011-10-24T11:27:00.000+07:00</published><updated>2011-10-24T11:27:45.423+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Create post summary for video post</title><content type='html'>Some readers asked me how to make a frontpage like simplextube2 . The video player is shown directly in homepage . The idea behind this script is similar to other 'readmore' script ,but it focus on video .&lt;br /&gt;&lt;img border="0" height="307" src="http://4.bp.blogspot.com/-vIUs6RcJpD0/TqTpGC1dHSI/AAAAAAAABCo/qxeOGuXWSWM/s320/url.jpg" width="320" /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;First&lt;/b&gt; , we set the form for a video post :&lt;br /&gt;&lt;div style="background-color: white; color: red;"&gt;video link ...&lt;/div&gt;&lt;div style="background-color: white; color: red;"&gt;endofvid&lt;/div&gt;&lt;div style="background-color: white; color: red;"&gt;[starttext]&lt;/div&gt;&lt;div style="background-color: white; color: red;"&gt;text for description&lt;/div&gt;&lt;div style="background-color: white; color: red;"&gt;[endtext]&lt;/div&gt;&lt;br /&gt;it means when we have a video post ,we have to post it as exact as this form .For example with a video from youtube :&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;http://youtube.com/..... endofvid&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;/div&gt;&lt;div style="background-color: white; color: red;"&gt;[starttext]&lt;/div&gt;&lt;div style="background-color: white; color: red;"&gt;this is description &lt;/div&gt;&lt;span style="color: red;"&gt;[endtext]&lt;/span&gt;The term 'endofvid' is used to marked the end of video link&amp;nbsp; ,the text in front of this term is video link .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Second&lt;/b&gt; ,when creating readmore ,the script will scan all post content ,searching for the term 'endofvid' ,extract the text before this term and determine which service it is belonged . For example ,if the text contain the word ' youtube' ,it means video service provider is youtube . If the text contain 'vimeo' ,it means the video provider is vimeo .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Third&lt;/b&gt; , create a video player for the video service we determine above . For example ,if the video link above is belong to youtube ,in this step ,we create a youtube player . After creating video player ,feed the video link to player ,and show it in front page .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Fourth&lt;/b&gt; ,delete marked words 'endofvid' ,'[starttext]' ,'[endtext] &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Now we move to the script &lt;/h3&gt;Insert this code before &lt;b&gt;&amp;lt;body&amp;gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp; &amp;lt;!--//--&amp;gt;&amp;lt;![CDATA[//&amp;gt;&amp;lt;!--&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;var thumbnail_mode = 'float' ;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;summary_noimg = 50;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;summary_img = 50;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;img_thumb_height = 120;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;img_thumb_width = 192;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;function stripHtmlTags(s,max){return s.replace(/&amp;amp;lt;.*?&amp;amp;gt;/ig, '').split(/\s+/).slice(0,max-1).join(' ')}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;function createVideo(pID){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var div = document.getElementById(pID);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var postcontent = div.innerHTML;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (postcontent.indexOf("endofvid")!=-1) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidlink = postcontent.substring(0,postcontent.indexOf("endofvid"));&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (/\.youtube\.com\/watch/i.test(vidlink))&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidid = vidlink.substring(vidlink.indexOf("http://www.youtube.com/watch?v=")+31)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; embedvid = '&amp;lt;object width="450" height="260"&amp;gt;&amp;lt;param name="movie" value="http://www.youtube.com/v/'+ vidid + '&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;rel=0"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowFullScreen" value="true"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowscriptaccess" value="always"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;embed src="http://www.youtube.com/v/'+ vidid + '&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="260"&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;'&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; else if (/\.liveleak\.com\/view/i.test(vidlink)) &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidid = vidlink.substring(vidlink.indexOf("http://www.liveleak.com/view?i=")+31)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; embedvid = '&amp;lt;object width="450" height="260"&amp;gt;&amp;lt;param name="movie" value="http://www.liveleak.com/e/'+ vidid + '&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;rel=0"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowFullScreen" value="true"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowscriptaccess" value="always"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;embed src="http://www.liveleak.com/e/'+ vidid + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="260"&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;'&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; else if (/vimeo\.com\/[0-9]+/i.test(vidlink)) &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidid = vidlink.substring(vidlink.indexOf("http://vimeo.com/")+17)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; embedvid = '&amp;lt;object width="450" height="260"&amp;gt;&amp;lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+ vidid + '&amp;amp;amp;server=vimeo.com&amp;amp;amp;show_title=1&amp;amp;amp;show_byline=1&amp;amp;amp;show_portrait=1&amp;amp;amp;color=00ADEF&amp;amp;amp;fullscreen=1&amp;amp;amp;autoplay=0&amp;amp;amp;loop=0"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowFullScreen" value="true"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowscriptaccess" value="always"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;embed src="http://vimeo.com/moogaloop.swf?clip_id='+ vidid + '&amp;amp;amp;server=vimeo.com&amp;amp;amp;show_title=1&amp;amp;amp;show_byline=1&amp;amp;amp;show_portrait=1&amp;amp;amp;color=00ADEF&amp;amp;amp;fullscreen=1&amp;amp;amp;autoplay=0&amp;amp;amp;loop=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="260"&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;'&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; else if (/dailymotion\.com\/video/i.test(vidlink)) &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidid1= vidlink.split("_");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidid= vidid1[0].substring(vidid1[0].indexOf("http://www.dailymotion.com/video/")+33)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; embedvid = '&amp;lt;object width="450" height="260"&amp;gt;&amp;lt;param name="movie" value="http://www.dailymotion.com/swf/video/'+ vidid + '?width=&amp;amp;theme=none&amp;amp;foreground=%23F7FFFD&amp;amp;highlight=%23FFC300&amp;amp;background=%23171D1B&amp;amp;start=&amp;amp;animatedTitle=&amp;amp;iframe=0&amp;amp;additionalInfos=0&amp;amp;autoPlay=0&amp;amp;hideInfos=0"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowFullScreen" value="true"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name="allowscriptaccess" value="always"&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;embed src="http://www.dailymotion.com/swf/video/'+ vidid + '?width=&amp;amp;theme=none&amp;amp;foreground=%23F7FFFD&amp;amp;highlight=%23FFC300&amp;amp;background=%23171D1B&amp;amp;start=&amp;amp;animatedTitle=&amp;amp;iframe=0&amp;amp;additionalInfos=0&amp;amp;autoPlay=0&amp;amp;hideInfos=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="260"&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;'&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; else if (/metacafe\.com\/watch/i.test(vidlink)) &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var vidid= vidlink.substring(vidlink.indexOf("http://www.metacafe.com/watch/")+30)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; embedvid = '&amp;lt;embed flashVars="playerVars=showStats=yes|autoPlay=no|" src="http://www.metacafe.com/fplayer/'+vidid+'.swf" width="450" height="260" wmode="transparent" allowFullScreen="true" allowScriptAccess="always" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"&amp;gt;&amp;lt;/embed&amp;gt;'&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; else &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; vidid="";&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; embedvid="";&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; postcontent = postcontent.replace (vidlink,"");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; postcontent = postcontent.replace("endofvid","");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; postcontent = postcontent.replace("[starttext]","");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; postcontent = postcontent.replace("[endtext]","");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var embedvid1 = '&amp;lt;span class="notxt"&amp;gt;'+embedvid+'&amp;lt;/span&amp;gt;';&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var summary =&amp;nbsp; embedvid1 + postcontent;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; div.innerHTML = summary;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;//--&amp;gt;&amp;lt;!]]&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Content of this script is as exact as the explanation above ,step by step . In this script ,there are 5 video service : youtube ,liveleak,vimeo,dailymotion and metacafe . If you want another video service that allow video embedding ,feel free to suggest :D &lt;br /&gt;&lt;br /&gt;Now ,move to the body of the post ,find this code&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;data:post.body/&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and replace it with &lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;div expr:id='&amp;amp;quot;summary&amp;amp;quot; + data:post.id' style="margin-top:10px;"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;data:post.body/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;script type='text/javascript'&amp;gt;createVideo(&amp;amp;quot;summary&amp;lt;data:post.id/&amp;gt;&amp;amp;quot;);&amp;lt;/script&amp;gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Now let's check for the post summary . You can create a post as the structure in step 1 ,insert a video from youtube ,and then see the result of post summary . Does the post show up with post summary and a video player ?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-2220487655444404871?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/2220487655444404871/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/10/create-post-summary-for-video-post.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2220487655444404871'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2220487655444404871'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/10/create-post-summary-for-video-post.html' title='Create post summary for video post'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-vIUs6RcJpD0/TqTpGC1dHSI/AAAAAAAABCo/qxeOGuXWSWM/s72-c/url.jpg' height='72' width='72'/><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-7977361022131080760</id><published>2011-10-17T10:46:00.003+07:00</published><updated>2011-10-19T11:22:39.260+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Make an impressive landing page for blogspot .</title><content type='html'>Some readers asked me for making a static landing page for blogspot . It makes blog look more professional and separated to other blogspot’s blogs .&lt;br /&gt;&lt;br /&gt;In this post ,I will tell you how to make a landing page for blogspot . This post related to HTML,CSS ,Jquery and some Blogspot Api’s ,so you must be familiar to them before we start .&lt;br /&gt;&lt;br /&gt;The idea for this landing page is inspired by a design from Tympanus website .&lt;br /&gt;&lt;img src="http://4.bp.blogspot.com/-UK2qbXQauNw/Tpuf0XdNNaI/AAAAAAAABCc/N1o0IhRlqVg/simplextest11_1318821757696.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://simplextest11.blogspot.com/"&gt;Live Demo&amp;nbsp; &lt;/a&gt;&lt;/span&gt;&lt;br /&gt;Now let's start &lt;br /&gt;&lt;h3&gt;1,HTML markup&lt;/h3&gt;&lt;br /&gt;The HTML structure consists of a main container and an unordered list where each item is one of the columns. The main container has class “ei_menu” and also the id “ei_menu”. &lt;br /&gt;Under the main container ,each of &lt;span style="color: red;"&gt;&amp;lt;li&amp;gt;&lt;/span&gt; item contains a link element with two spans inside and a div element with the content. &lt;br /&gt;The two spans are for the background image shown at the beginning and the image shown when click (active) . Since we are using just one image for each we will have to define the background position. &lt;br /&gt;Div element contain the title ,text,and links .&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div id="ei_menu" class="ei_menu"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="#" class="pos1"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_preview"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_image"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="ei_descr"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h2&amp;gt;title&amp;lt;/h2&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;a href="link"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h3&amp;gt;Click here to go&amp;lt;/h3&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;Some text here...&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="#" class="pos2"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_preview"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_image"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="ei_descr"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h2&amp;gt;title&amp;lt;/h2&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;a href="link"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h3&amp;gt;Click here to go&amp;lt;/h3&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;Some text here...&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="#" class="pos3"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_preview"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_image"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="ei_descr"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h2&amp;gt;title&amp;lt;/h2&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;a href="link"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h3&amp;gt;Click here to go&amp;lt;/h3&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;Some text here...&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="#" class="pos4"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_preview"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="ei_image"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="ei_descr"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h2&amp;gt;title&amp;lt;/h2&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;a href="link"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h3&amp;gt;Click here to go&amp;lt;/h3&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;Some text here...&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; .....................&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Link in href attribute of this line &lt;span style="color: red;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;a href="link"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h3&amp;gt;Click here to go&amp;lt;/h3&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="MsoNormal"&gt;Can be link to any page you want . Link to all posts in blog is :&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;i style="color: blue;"&gt;http://blog_name.blogspot.com/search/posts/default&lt;/i&gt;&lt;br /&gt;When we use this HTML markup for home page ,it means we have to hide another elements . It's the time to use Blogspot API - the conditional statement .&lt;br /&gt;It look like this&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:if cond='data:blog.url == data:blog.homepageUrl'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;i&gt;&lt;span style="color: red;"&gt;The HTML markup&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:else/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;i&gt;&lt;span style="color: red;"&gt;Other elements you want to hide in home page&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For example ,in default template (such as minima) ,we want to hide blog posts :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:if cond='data:blog.url == data:blog.homepageUrl'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;span style="color: red;"&gt;The HTML markup&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:else/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;span style="color: red;"&gt;&amp;lt;b:section class='main' id='main1' showaddelement='no'&amp;gt;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;.......................&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;lt;/b:section&amp;gt;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;h3&gt;2,The CSS&lt;/h3&gt;Add this code in CSS sections of your template&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;/* Menu style */&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_menu{&lt;/div&gt;&lt;div style="color: red;"&gt;background:#111;&lt;/div&gt;&lt;div style="color: red;"&gt;width:100%;&lt;/div&gt;&lt;div style="color: red;"&gt;overflow:hidden;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_menu ul{&lt;/div&gt;&lt;div style="color: red;"&gt;height:350px;&lt;/div&gt;&lt;div style="color: red;"&gt;margin-left:50px;&lt;/div&gt;&lt;div style="color: red;"&gt;position:relative;&lt;/div&gt;&lt;div style="color: red;"&gt;display:block;&lt;/div&gt;&lt;div style="color: red;"&gt;width:1300px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_menu ul li{&lt;/div&gt;&lt;div style="color: red;"&gt;float:left;&lt;/div&gt;&lt;div style="color: red;"&gt;width:75px;&lt;/div&gt;&lt;div style="color: red;"&gt;height:350px;&lt;/div&gt;&lt;div style="color: red;"&gt;position:relative;&lt;/div&gt;&lt;div style="color: red;"&gt;overflow:hidden;&lt;/div&gt;&lt;div style="color: red;"&gt;border-right:2px solid #111;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_preview{&lt;/div&gt;&lt;div style="color: red;"&gt;width:75px;&lt;/div&gt;&lt;div style="color: red;"&gt;height:350px;&lt;/div&gt;&lt;div style="color: red;"&gt;cursor:pointer;&lt;/div&gt;&lt;div style="color: red;"&gt;position:absolute;&lt;/div&gt;&lt;div style="color: red;"&gt;top:0px;&lt;/div&gt;&lt;div style="color: red;"&gt;left:0px;&lt;/div&gt;&lt;div style="color: red;"&gt;background:transparent url(../images/bw.jpg) no-repeat top left;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_image{&lt;/div&gt;&lt;div style="color: red;"&gt;position:absolute;&lt;/div&gt;&lt;div style="color: red;"&gt;left:75px;&lt;/div&gt;&lt;div style="color: red;"&gt;top:0px;&lt;/div&gt;&lt;div style="color: red;"&gt;width:75px;&lt;/div&gt;&lt;div style="color: red;"&gt;height:350px;&lt;/div&gt;&lt;div style="color: red;"&gt;opacity:0.2;&lt;/div&gt;&lt;div style="color: red;"&gt;background:transparent url(../images/color.jpg) no-repeat top left;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.pos1 span{&lt;/div&gt;&lt;div style="color: red;"&gt;background-position:0px 0px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.pos2 span{&lt;/div&gt;&lt;div style="color: red;"&gt;background-position:-75px 0px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.pos3 span{&lt;/div&gt;&lt;div style="color: red;"&gt;background-position:-152px 0px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.pos4 span{&lt;/div&gt;&lt;div style="color: red;"&gt;background-position:-227px 0px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.pos5 span{&lt;/div&gt;&lt;div style="color: red;"&gt;background-position:-302px 0px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.pos6 span{&lt;/div&gt;&lt;div style="color: red;"&gt;background-position:-377px 0px;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_descr{&lt;/div&gt;&lt;div style="color: red;"&gt;position:absolute;&lt;/div&gt;&lt;div style="color: red;"&gt;width:278px;&lt;/div&gt;&lt;div style="color: red;"&gt;height:310px;&lt;/div&gt;&lt;div style="color: red;"&gt;border-right:7px solid #f0f0f0;&lt;/div&gt;&lt;div style="color: red;"&gt;padding:20px;&lt;/div&gt;&lt;div style="color: red;"&gt;left:75px;&lt;/div&gt;&lt;div style="color: red;"&gt;top:0px;&lt;/div&gt;&lt;div style="color: red;"&gt;background:#fff;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_descr h2{&lt;/div&gt;&lt;div style="color: red;"&gt;font-family: 'Rock Salt', arial, serif;&lt;/div&gt;&lt;div style="color: red;"&gt;font-size:26px;&lt;/div&gt;&lt;div style="color: red;"&gt;color:#333;&lt;/div&gt;&lt;div style="color: red;"&gt;padding:10px;&lt;/div&gt;&lt;div style="color: red;"&gt;text-shadow:0px 0px 1px #fff;&lt;/div&gt;&lt;div style="color: red;"&gt;background:#fff url(../images/stripe_light.gif) repeat top left;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_descr h3{&lt;/div&gt;&lt;div style="color: red;"&gt;font-family: 'Raleway', arial, serif;&lt;/div&gt;&lt;div style="color: red;"&gt;color:#fff;&lt;/div&gt;&lt;div style="color: red;"&gt;text-shadow:0px 0px 1px #000;&lt;/div&gt;&lt;div style="color: red;"&gt;font-style:normal;&lt;/div&gt;&lt;div style="color: red;"&gt;padding:10px;&lt;/div&gt;&lt;div style="color: red;"&gt;background:#333;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;.ei_descr p{&lt;/div&gt;&lt;div style="color: red;"&gt;color:#000;&lt;/div&gt;&lt;div style="color: red;"&gt;padding:10px 5px 0px 5px;&lt;/div&gt;&lt;div style="color: red;"&gt;line-height:18px;&lt;/div&gt;&lt;div style="color: red;"&gt;font-size:11px;&lt;/div&gt;&lt;div style="color: red;"&gt;font-family: Arial;&lt;/div&gt;&lt;div style="color: red;"&gt;text-transform:uppercase;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;br /&gt;Meaning of these CSS tags can be found in CSS cheat sheets or websites focus on CSS . I will not explain here for keep the post short and clean .Replace the images in background attributes to yours own images .&lt;br /&gt;Add two lines&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;link href='http://fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css' /&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;link href='http://fonts.googleapis.com/css?family=Raleway:100' rel='stylesheet' type='text/css' /&amp;gt;&lt;/div&gt;&lt;br /&gt;Right after &lt;span style="color: red;"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt; for embedding Google fonts into this design .&lt;br /&gt;&lt;h3&gt;3,The Javascript&lt;/h3&gt;The idea is to expand the menu when clicking on it . The initial width for each menu item is 75 pixel ,when clicked ,the width is enlarged to 400 pixel (75pixel plus 325pixel for the hidden content )&lt;br /&gt;Add this code right before &amp;lt;/body&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;amp;lt;script type=&amp;amp;quot;text/javascript&amp;amp;quot; src=&amp;amp;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;amp;lt;script type=&amp;amp;quot;text/javascript&amp;amp;quot; src=&amp;amp;quot;http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;amp;lt;script type=&amp;amp;quot;text/javascript&amp;amp;quot;&amp;amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;$(function() {&lt;/div&gt;&lt;div style="color: red;"&gt;var $menu    = $('#ei_menu &amp;amp;gt; ul'),&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItems   = $menu.children('li'),&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsImgWrapper= $menuItems.children('a'),&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsPreview = $menuItemsImgWrapper.children('.ei_preview'),&lt;/div&gt;&lt;div style="color: red;"&gt;totalMenuItems  = $menuItems.length,&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;ExpandingMenu  = (function(){&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;@current&lt;/div&gt;&lt;div style="color: red;"&gt;set it to the index of the element you want to be opened by default,&lt;/div&gt;&lt;div style="color: red;"&gt;or -1 if you want the menu to be closed initially&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;var current    = -1,&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;@anim&lt;/div&gt;&lt;div style="color: red;"&gt;if we want the default opened item to animate initialy set this to true&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;anim    = true,&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;checks if the current value is valid -&lt;/div&gt;&lt;div style="color: red;"&gt;between 0 and the number of items&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;validCurrent  = function() {&lt;/div&gt;&lt;div style="color: red;"&gt;return (current &amp;amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; current &amp;amp;lt; totalMenuItems);&lt;/div&gt;&lt;div style="color: red;"&gt;},&lt;/div&gt;&lt;div style="color: red;"&gt;init    = function() {&lt;/div&gt;&lt;div style="color: red;"&gt;/* show default item if current is set to a valid index */&lt;/div&gt;&lt;div style="color: red;"&gt;if(validCurrent())&lt;/div&gt;&lt;div style="color: red;"&gt;configureMenu();&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;initEventsHandler();&lt;/div&gt;&lt;div style="color: red;"&gt;},&lt;/div&gt;&lt;div style="color: red;"&gt;configureMenu  = function() {&lt;/div&gt;&lt;div style="color: red;"&gt;/* get the item for the current */&lt;/div&gt;&lt;div style="color: red;"&gt;var $item = $menuItems.eq(current);&lt;/div&gt;&lt;div style="color: red;"&gt;/* if anim is true slide out the item */&lt;/div&gt;&lt;div style="color: red;"&gt;if(anim)&lt;/div&gt;&lt;div style="color: red;"&gt;slideOutItem($item, true, 900, 'easeInQuint');&lt;/div&gt;&lt;div style="color: red;"&gt;else{&lt;/div&gt;&lt;div style="color: red;"&gt;/* if not just show it */&lt;/div&gt;&lt;div style="color: red;"&gt;$item.css({width : '400px'})&lt;/div&gt;&lt;div style="color: red;"&gt;.find('.ei_image')&lt;/div&gt;&lt;div style="color: red;"&gt;.css({left:'0px', opacity:1});&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/* decrease the opacity of the others */&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItems.not($item)&lt;/div&gt;&lt;div style="color: red;"&gt;.children('.ei_preview')&lt;/div&gt;&lt;div style="color: red;"&gt;.css({opacity:0.2});&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;},&lt;/div&gt;&lt;div style="color: red;"&gt;initEventsHandler = function() {&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;when we click an item the following can happen:&lt;/div&gt;&lt;div style="color: red;"&gt;1) The item is already opened - close it!&lt;/div&gt;&lt;div style="color: red;"&gt;2) The item is closed - open it! (if another one is opened, close it!)&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsImgWrapper.bind('click.ExpandingMenu', function(e) {&lt;/div&gt;&lt;div style="color: red;"&gt;var $this  = $(this).parent(),&lt;/div&gt;&lt;div style="color: red;"&gt;idx  = $this.index();&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;if(current === idx) {&lt;/div&gt;&lt;div style="color: red;"&gt;slideOutItem($menuItems.eq(current), false, 1500, 'easeOutQuint', true);&lt;/div&gt;&lt;div style="color: red;"&gt;current = -1;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;else{&lt;/div&gt;&lt;div style="color: red;"&gt;if(validCurrent() &amp;amp;amp;&amp;amp;amp; current !== idx)&lt;/div&gt;&lt;div style="color: red;"&gt;slideOutItem($menuItems.eq(current), false, 250, 'jswing');&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;current = idx;&lt;/div&gt;&lt;div style="color: red;"&gt;slideOutItem($this, true, 250, 'jswing');&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;return false;&lt;/div&gt;&lt;div style="color: red;"&gt;});&lt;/div&gt;&lt;div style="color: red;"&gt;},&lt;/div&gt;&lt;div style="color: red;"&gt;/* if you want to trigger the action to open a specific item */&lt;/div&gt;&lt;div style="color: red;"&gt;openItem   = function(idx) {&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsImgWrapper.eq(idx).click();&lt;/div&gt;&lt;div style="color: red;"&gt;},&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;opens or closes an item&lt;/div&gt;&lt;div style="color: red;"&gt;note that &amp;amp;quot;mLeave&amp;amp;quot; is just true when all the items close,&lt;/div&gt;&lt;div style="color: red;"&gt;in which case we want that all of them get opacity 1 again.&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;amp;quot;dir&amp;amp;quot; tells us if we are opening or closing an item (true | false)&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;slideOutItem  = function($item, dir, speed, easing, mLeave) {&lt;/div&gt;&lt;div style="color: red;"&gt;var $ei_image = $item.find('.ei_image'),&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;itemParam = (dir) ? {width : '400px'} : {width : '75px'},&lt;/div&gt;&lt;div style="color: red;"&gt;imageParam = (dir) ? {left : '0px'} : {left : '75px'};&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;if opening, we animate the opacity of all the elements to 0.1.&lt;/div&gt;&lt;div style="color: red;"&gt;this is to give focus on the opened item..&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;if(dir)&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;alternative:&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsPreview.not($menuItemsPreview.eq(current))&lt;/div&gt;&lt;div style="color: red;"&gt;.stop()&lt;/div&gt;&lt;div style="color: red;"&gt;.animate({opacity:0.1}, 500);&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsPreview.stop()&lt;/div&gt;&lt;div style="color: red;"&gt;.animate({opacity:0.1}, 1000);&lt;/div&gt;&lt;div style="color: red;"&gt;else if(mLeave)&lt;/div&gt;&lt;div style="color: red;"&gt;$menuItemsPreview.stop()&lt;/div&gt;&lt;div style="color: red;"&gt;.animate({opacity:1}, 1500);&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/* the &amp;amp;lt;li&amp;amp;gt; expands or collapses */&lt;/div&gt;&lt;div style="color: red;"&gt;$item.stop().animate(itemParam, speed, easing);&lt;/div&gt;&lt;div style="color: red;"&gt;/* the image (color) slides in or out */&lt;/div&gt;&lt;div style="color: red;"&gt;$ei_image.stop().animate(imageParam, speed, easing, function() {&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;if opening, we animate the opacity to 1,&lt;/div&gt;&lt;div style="color: red;"&gt;otherwise we reset it.&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;if(dir)&lt;/div&gt;&lt;div style="color: red;"&gt;$ei_image.animate({opacity:1}, 2000);&lt;/div&gt;&lt;div style="color: red;"&gt;else&lt;/div&gt;&lt;div style="color: red;"&gt;$ei_image.css('opacity', 0.2);&lt;/div&gt;&lt;div style="color: red;"&gt;});&lt;/div&gt;&lt;div style="color: red;"&gt;};&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;return {&lt;/div&gt;&lt;div style="color: red;"&gt;init   : init,&lt;/div&gt;&lt;div style="color: red;"&gt;openItem : openItem&lt;/div&gt;&lt;div style="color: red;"&gt;};&lt;/div&gt;&lt;div style="color: red;"&gt;})();&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;call the init method of ExpandingMenu&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;ExpandingMenu.init();&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/*&lt;/div&gt;&lt;div style="color: red;"&gt;if later on you want to open / close a specific item you could do it like so:&lt;/div&gt;&lt;div style="color: red;"&gt;ExpandingMenu.openItem(3); // toggles item 3 (zero-based indexing)&lt;/div&gt;&lt;div style="color: red;"&gt;*/&lt;/div&gt;&lt;div style="color: red;"&gt;});&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/div&gt;&lt;br /&gt;That’s all .&lt;br /&gt;There are two keypoints here : &lt;br /&gt;1-Make the HTML markup ,adding CSS and javascript to make an expanding menu for homepage .&lt;br /&gt;2-Hide elements which you do not want to show in homepage .  &lt;br /&gt;&lt;br /&gt;I hope this post helpful to you .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-7977361022131080760?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/7977361022131080760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/10/make-impressive-landing-page-for.html#comment-form' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7977361022131080760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7977361022131080760'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/10/make-impressive-landing-page-for.html' title='Make an impressive landing page for blogspot .'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-UK2qbXQauNw/Tpuf0XdNNaI/AAAAAAAABCc/N1o0IhRlqVg/s72-c/simplextest11_1318821757696.png' height='72' width='72'/><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-113602617330195783</id><published>2011-08-20T23:23:00.000+07:00</published><updated>2011-08-20T23:23:58.513+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>how to make a blogspot template : General steps of making blogspot template</title><content type='html'>This is the last post in series 'how to make a blogspot template' .In this post ,I just want to tell you what I did when making Simplex's templates . I do not focus on HTML/CSS /Javascript because you can find documents on these easily in internet .&amp;nbsp; I also do not go further on Blogger template structures/sections /widgets/data tags/API ,because they are mentioned in previous posts . Only work orders ,tools ,and some tips .&lt;br /&gt;&lt;br /&gt;Unlike other platforms such as wordpress stand alone or joomla which a template comes with many files ,blogger template is in one file xml only .&lt;br /&gt;As we know ,blogger template contain sections . Here is the order of these sections :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;i&gt;First ,header&lt;/i&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Second ,blogpost &lt;/i&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Third ,sidebar &lt;/i&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Last ,footer &lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;All we need to do when making a template are :&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Place sections and widgets in right order . Add/remove sections /widgets&amp;nbsp;&lt;/li&gt;&lt;li&gt;Add HTML arround these sections ,and use CSS to decorating them .&lt;/li&gt;&lt;li&gt;Add javascript /jquery for special effects ,get the feeds and mashup homepage .&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;1,Place sections and widgets in right order .&lt;/h3&gt;Blogspot is made up with sections ,widgets... so you have to place them in right order ,add more sections /widget for the function you want and remove unnecessary sections /widgets .&lt;br /&gt;For example ,in Simplex Blognews template ,I add more sections for page list ( in the top of page ) ,sections for advertising banner ...remove default sections and widgets in sidebar .&lt;br /&gt;I also use conditional statement &lt;span style="color: red;"&gt;&amp;lt;b:if&amp;gt;&lt;/span&gt; to hide sections/widget in some specific cases . For example ,we all know blogpost widget show the post list /single post (&lt;a href="http://simplexdesign.blogspot.com/2011/08/how-to-make-blogger-template-how.html"&gt;see the post on blogpost widget here&lt;/a&gt;) ,but in the homepage ,I don't want it to show up ,so I use a conditional statement to cover all blogpost widget&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:if cond='data:blog.url == data:blog.homepageUrl'&amp;gt;&lt;br /&gt;homepage content &lt;br /&gt;&amp;lt;b:else/&amp;gt;&lt;br /&gt;blogpost widget .....&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;/div&gt;&lt;br /&gt;In the code above ,if the current page is homepage ,it will show homepage content , if the current page is a category page or single post ,it will call blogpost widget for processing content .&lt;br /&gt;Or if we want to hide all the blog content when go to a specific page ,we can use a conditional statement like that :&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:if cond='data:blog.url == &amp;amp;quot;page url&amp;amp;quot;'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;.....&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;b:else/&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;other content here&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:if&amp;gt;&lt;/div&gt;By add/remove widgets and place them in right order,we have the frame of a template .&lt;br /&gt;&lt;h3&gt;2,Add HTML and CSS around sections/widgets&lt;/h3&gt;We have a template's frame with sections and widgets,now we need to add more HTML tags around and decorate these HTML tags with CSS to make it display as we want : some images ,some text in bold , fonts&amp;nbsp; ....you can do all of them in this step .&lt;br /&gt;Firebugs is the best tool for this work ,you can find the post on how to use this tool &lt;a href="http://simplexdesign.blogspot.com/2011/07/how-to-solve-css-errors-in-blogger.html"&gt;here&lt;/a&gt; . It will reduce your time on working with CSS and HTML .You can use this tool to inspect elements on websites which has design you want and find out which HTML/CSS their designer used . CSS tags information and cheatsheet can be found in &lt;a href="http://simplexdesign.blogspot.com/2011/07/31-online-css-cheatsheets-that-help.html"&gt;this post&lt;/a&gt; .&lt;br /&gt;To get some inspirations ,you can go to template galleries ,collections ,or go to famous blogs on design . Sometimes ,combining the elements which you love in various templates can give you an unique design .&lt;br /&gt;&lt;h3&gt;3,Add Javascripts/jquery &lt;/h3&gt;&lt;br /&gt;Because blogger doesn't allow server side programing , Javascript/Jquery will give us a solution for mashing up a homepage . By using Javascript to get feeds from categories in blog,split the feed into post titles,post summaries ...and then display them ,we have a good homepage ,as you see in Simplex' templates . &lt;br /&gt;Javascript/Jquery is also used to make special effects,for example ,sliders,hover buttons ,menu ...&lt;br /&gt;You can find out more post on using Jquery/Javascript in SimplexDesign blog .&lt;br /&gt;&lt;br /&gt;That's all steps I applied when making a template and it work for me ^^ I can't tell you how to make a specific template ,because it's very long and take times . I hope with series 'how to make a blogspot template ' you can :&lt;br /&gt;&lt;i&gt;-Understand the basic of a blogspot template ,structure,what it contain&lt;/i&gt;&lt;br /&gt;&lt;i&gt;-Functions of sections /widgets,how they work .Meaning of data tags /Api and statements.&lt;/i&gt;&lt;br /&gt;&lt;i&gt;-General steps to make a template,what we have to do ,what we have to search in google for making an elements ....&lt;/i&gt;&lt;br /&gt;By reading all posts from start to the end ,I hope every time you see the code of Simplex templates ,you can understand what I did,and then make your own customization ,you can also apply them in making your own template .&lt;br /&gt;It take time to search,read and then apply to make a template . It's not easy . But if you want ,you can do it .Thanks for supporting me all the time .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-113602617330195783?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/113602617330195783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/08/how-to-make-blogspot-template-general.html#comment-form' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/113602617330195783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/113602617330195783'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/08/how-to-make-blogspot-template-general.html' title='how to make a blogspot template : General steps of making blogspot template'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-4423197579820644494</id><published>2011-08-06T10:36:00.000+07:00</published><updated>2011-08-06T10:36:30.464+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>How to make a blogger template : how blogspot widget work?</title><content type='html'>In previous posts ,you known the meaning of Blogger data tags ,now in this post ,we will see how blogspot widget ,the most important widget in blogger work .&lt;br /&gt;Blogpost widget is the widget that show the process and show the blog post .&lt;br /&gt;It contain many 'includable' inside ,this structure you can get from the post on widget.&lt;br /&gt;Now let't see how it work&lt;br /&gt;&lt;br /&gt;In a template , Blogpost widget start with this line&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The id can be vary in different template ,but the type="Blog" is required&lt;br /&gt;In this widget ,there are some 'includable' :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='main' var='top'&amp;gt;&lt;/span&gt; : main includable ,this includable will take the main task for processing data and show the result to user computer&lt;/li&gt;&lt;li&gt;&amp;nbsp;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='nextprev'&amp;gt;&lt;/span&gt;: this includable will add the link 'next page' ,'prev pag' at the bottom of homepage ,archive page ,and add the link 'next post','previous post' at the bottom of single post .&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='mobile-nextprev'&amp;gt;&lt;/span&gt; this includable do the same task to nextprev includable above ,but this includable will work if you browse the blog in mobile .&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='post' var='post'&amp;gt;&lt;/span&gt; this includable will process the data of each post ,it will show post title,post body ,date .... if you are reading a single post ,and show post summary if you are in homepage or archive page &lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='mobile-index-post' var='post'&amp;gt;&lt;/span&gt; like 'post' includable above ,but it work on mobile&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='postQuickEdit' var='post'&amp;gt;&lt;/span&gt; this includable will add an small pencil at the end of post ,that allow blog owner can edit the post easily ,click on this pencil ,blog owner will be redirected to post editing window ,don't need to back to dashboard ,and search for post which he want to edit from post list.&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='shareButtons' var='post'&amp;gt;&lt;/span&gt; this includable will show a list of share buttons at the end of post&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='comments' var='post'&amp;gt;&lt;/span&gt; show all comments of each post . &lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='commentDeleteIcon' var='comment'&amp;gt;&lt;/span&gt; add a recycle bin symbol next to the comment ,allow blog owner delete unwanted comment .&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='comment-form' var='post'&amp;gt;&lt;/span&gt; show the comment form bellow the post ,allow reader to write their comment .&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='backlinks' var='post'&amp;gt;&lt;/span&gt; show the backlinks to a post .&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='backlinkDeleteIcon' var='backlink'&amp;gt;&lt;/span&gt; show the recycle bin icon next t'o the backlink&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='feedLinks'&amp;gt; and &amp;lt;b:includable id='feedLinksBody' var='links'&amp;gt;&lt;/span&gt; :show the feed links to blog and to each post .&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='status-message'&amp;gt;&lt;/span&gt; show the status message ,like this ' show all post under label xyz '&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Blogpost work as diagram bellow &lt;/h3&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-rcPgdvw-pPI/Tjy1WfFN1AI/AAAAAAAABBY/Y1PdAU8V9_A/s1600/how%2Bblogspot%2Bwork.jpeg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1,When Blogpost widget start working&lt;br /&gt;2,It start a loop statement to looping through all post &lt;br /&gt;3,If the post counting number i smaller than the number of post ,it will call the post includable for showing post data (post title ,post body ,author ,labels...)&lt;br /&gt;4a,4b,4c In the post includable ,if the current page is a single post ,it also call other includables such as post edit icon ,comment ,comment form ...  ,but if current page is homepage or an archive page ,these includable will not be called .&lt;br /&gt;5,Go to the next post and back to the check point at step 3&lt;br /&gt;6,In case of finish looping through all posts ,back to the main includable &lt;br /&gt;7,Call next prev includable (or feedlinks,backlinks...if necessary) ,add the link to next and previous post to the end of page .&lt;br /&gt;8,Finish&lt;br /&gt;&lt;br /&gt;In these includable ,beside data tags ,we can add HTML ,javascript to make it display as we want .&lt;br /&gt;Combine this post with previous post on data tags,widget structure ,looping and conditional statement ,you will get a big picture on how a template work when reading the code .&lt;br /&gt;Hope this post helpful to you&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-4423197579820644494?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/4423197579820644494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/08/how-to-make-blogger-template-how.html#comment-form' title='15 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4423197579820644494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4423197579820644494'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/08/how-to-make-blogger-template-how.html' title='How to make a blogger template : how blogspot widget work?'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-rcPgdvw-pPI/Tjy1WfFN1AI/AAAAAAAABBY/Y1PdAU8V9_A/s72-c/how%2Bblogspot%2Bwork.jpeg' height='72' width='72'/><thr:total>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-2805903398587165149</id><published>2011-07-27T20:00:00.000+07:00</published><updated>2011-07-27T20:00:06.048+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='design'/><title type='text'>How to make a blogger template : data tags -part 2</title><content type='html'>In previous post ,I told you about data tags for some widgets . In this post ,we continue to the last and most important widget : blogpost widget . This widget is used to show posts in a blog . Without this widget ,we can't blogging .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-H7ZALpRIgvQ/Ti9wBD1Ak9I/AAAAAAAABBQ/gkvQ9-xQwEA/s1600/BloggerHacks.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-H7ZALpRIgvQ/Ti9wBD1Ak9I/AAAAAAAABBQ/gkvQ9-xQwEA/s1600/BloggerHacks.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Now let's see blogpost widget's data tags :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:feedLinks/&amp;gt;&lt;/span&gt;: A list of feeds for this page. On the main page, this will contain the main blog feeds; on item pages, this will also contain comments feeds. Each item in this list contains the following:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLinks.url/&amp;gt;&lt;/span&gt;: The feed URL.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLinks.name/&amp;gt;&lt;/span&gt;: The feed name (i.e. 'Posts' or 'Comments').&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLinks.feedType/&amp;gt;&lt;/span&gt;: The type of feed (Atom or RSS).&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLinks.mimeType/&amp;gt;&lt;/span&gt;: The mime type of the feed.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:olderPageUrl/&amp;gt;&lt;/span&gt;: If there are older posts than the ones on the current page, this is a URL to those posts. Context-sensitive for page type. (Not all pages will have this link.)&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:olderPageTitle/&amp;gt;&lt;/span&gt;: Title of the link to the older page of posts. It's usually the text "Older Posts"&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:newerPageUrl/&amp;gt;&lt;/span&gt;: The newer equivalent of olderPageUrl.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:newerPageTitle/&amp;gt;&lt;/span&gt;: The newer equivalent of olderPageTitle.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:commentLabel/&amp;gt;&lt;/span&gt;: The phrase to use to show the number of comments, e.g. "comments."&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:authorLabel/&amp;gt;&lt;/span&gt;: The phrase to use to indicate who wrote the post, e.g. "posted by."&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:timestampLabel/&amp;gt;&lt;/span&gt;: The phrase to use to indicate when the post was written, e.g. "posted at."&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:postLabelsLabel/&amp;gt;&lt;/span&gt;: Phrase to introduce the list of post labels, e.g. "labels for this post."&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:backlinksLabel/&amp;gt;&lt;/span&gt;: Phrase to describe backlinks to this post, e.g. "links to this post."&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:posts/&amp;gt;&lt;/span&gt;: A list of all posts for this page. You can consider it a set ,and each post is an item in this set . We can refer to post's properties by the following tags:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.dateHeader/&amp;gt;&lt;/span&gt;: The date of this post, only present if this is the first post in the list that was posted on this day.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.id/&amp;gt;&lt;/span&gt;: The numeric post ID.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:post.title/:&amp;gt;&lt;/span&gt; The post's title.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:post.body/&amp;gt;&lt;/span&gt;: The content of the post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.author/&amp;gt;&lt;/span&gt;: The display name of the post author.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.url/&amp;gt;&lt;/span&gt;: The permalink of this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.timestamp/&amp;gt;&lt;/span&gt;: The post's timestamp. Unlike dateHeader, this exists for every post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.labels/&amp;gt;&lt;/span&gt;: The list of the post's labels. Each label contains the following:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:label.name/&amp;gt;&lt;/span&gt;: The label text.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:label.url/&amp;gt;&lt;/span&gt;: The URL of the page that lists all posts in this blog with this label.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:label.isLast/&amp;gt;&lt;/span&gt;: True or false. Whether this label is the last one in the list (useful for placing commas).&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.allowComments/&amp;gt;&lt;/span&gt;: 'True' if this post allows comments.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:post.numComments/&amp;gt;&lt;/span&gt;: The number of comments on this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.showBacklinks&amp;gt;&lt;/span&gt;: Whether to show backlinks for this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.numBacklinks/&amp;gt;&lt;/span&gt;: Number of backlinks for this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.addCommentUrl/&amp;gt;&lt;/span&gt;: The URL of the 'add a comment' form for this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.emailPostUrl/&amp;gt;&lt;/span&gt;: The URL of the 'email this post' form for this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:post.editUrl/&amp;gt;&lt;/span&gt;: The URL of the edit form for this post.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLinks/&amp;gt;&lt;/span&gt;: A list of feeds specific to this post. (This is different from the overall blog feedLinks, as it may contain a feed for the post's comments, for instance.) Each contains the following:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:feedLink.url/&amp;gt;&lt;/span&gt;: The feed URL.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:feedLink.name/&amp;gt;&lt;/span&gt;: The feed name (e.g. 'Posts' or 'Comments').&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLink.feedType/&amp;gt;&lt;/span&gt;: The type of feed (Atom or RSS).&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedLink.mimeType/&amp;gt;&lt;/span&gt;: The mime type of the feed.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:comments/&amp;gt;&lt;/span&gt;: A list of all comments for this post (on item pages only). Each contains the following:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:comment.id/&amp;gt;&lt;/span&gt;: The numeric ID of the comment.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:comment.body/&amp;gt;&lt;/span&gt;: The body of the comment.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:comment.timestamp/&amp;gt;&lt;/span&gt;: The time the comment was created.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:comment.author/&amp;gt;&lt;/span&gt;: The display name of the comment's author, or 'Anonymous'.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:comment.authorUrl/&amp;gt;&lt;/span&gt;: URL of the comment author's profile, if the comment is not anonymous.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:comment.deleteUrl/&amp;gt;&lt;/span&gt;: The URL for deleting this comment.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:comment.isDeleted/&amp;gt;&lt;/span&gt;: Whether this comment has been deleted. (The text of deleted comments is replaced with a placeholder.)&amp;nbsp; &lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-2805903398587165149?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/2805903398587165149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-data-tags_27.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2805903398587165149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2805903398587165149'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-data-tags_27.html' title='How to make a blogger template : data tags -part 2'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-H7ZALpRIgvQ/Ti9wBD1Ak9I/AAAAAAAABBQ/gkvQ9-xQwEA/s72-c/BloggerHacks.jpg' height='72' width='72'/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-5103571191160605522</id><published>2011-07-22T20:00:00.000+07:00</published><updated>2011-07-22T20:00:00.099+07:00</updated><title type='text'>How to make a blogger template : data tags - part 1</title><content type='html'>In previous post ,I mentioned on what is on widgets and includable ,and now ,in this post ,I want to show you the Blogger APIs,or data tags ,which you can use to included specific pieces of data in template file .&lt;br /&gt;All of these data tags has structure :&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;lt;data:name/&amp;gt;&lt;/span&gt; or &lt;span style="color: red;"&gt;&amp;lt;data:name1.name2/&amp;gt;&lt;/span&gt;&lt;br /&gt;where&lt;code&gt;&lt;/code&gt; &lt;span style="color: red;"&gt;name&lt;/span&gt; or &lt;span style="color: red;"&gt;name1,name2&lt;/span&gt;&amp;nbsp; is the name of the particular piece of data you want to use&lt;br /&gt;&lt;br /&gt;Now ,we go further :&lt;br /&gt;In the post on section and widget ,I told you there are 12 types of widget :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;BlogArchive&lt;/li&gt;&lt;li&gt;Blog&lt;/li&gt;&lt;li&gt;Feed&lt;/li&gt;&lt;li&gt;Header&lt;/li&gt;&lt;li&gt;HTML&lt;/li&gt;&lt;li&gt;SingleImage&lt;/li&gt;&lt;li&gt;LinkList&lt;/li&gt;&lt;li&gt;List&lt;/li&gt;&lt;li&gt;Logo&lt;/li&gt;&lt;li&gt;BlogProfile&lt;/li&gt;&lt;li&gt;Navbar&lt;/li&gt;&lt;li&gt;VideoBar&lt;/li&gt;&lt;li&gt;NewsBar &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;So there are 12 groups of Blogger APIs (or data tags ) for 12 types of widget ,these APIs can use only in the corresponding widget and one group for Globally Available Data ( the data you can use in any place in template )&lt;br /&gt;1,Globally Available Data :&lt;br /&gt;These data tags can be applied to the entire page, so you can use it anywhere, unlike other data tags which can only be used in a specific widget.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:title/&amp;gt;&lt;/span&gt;: Return the blog's title.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:pageType/&amp;gt;&lt;/span&gt;: Return type of the current page. It can be 'item', 'archive', or 'index'.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:url/&amp;gt;&lt;/span&gt;: Return the URL of the current page.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:homepageUrl&amp;gt;&lt;/span&gt;: Return the homepage of the blog.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt;&amp;nbsp; &amp;lt;data:pageTitle/&amp;gt;&lt;/span&gt;: Return title of the current page. This is often the blog title, but may contain additional information on archive or post pages.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:encoding/&amp;gt;&lt;/span&gt; : Return the encoding to use for the blog, e.g. UTF-8.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:languageDirection/&amp;gt;&lt;/span&gt;: Return either "ltr" or "rtl" for left-to-right and right-to-left languages, respectively.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt;&amp;nbsp; &amp;lt;data:feedLinks/&amp;gt;&lt;/span&gt;: Return the autodiscovery feed links for the page header.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;b&gt;How to apply them ?&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Very simple ,in template ,in a place you want to show blog title ,just add a &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt; and the blog title will be shown .&amp;nbsp;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Page Header&lt;/h3&gt;There are two data tags for this widget : &lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt;&amp;nbsp; &amp;lt;data:title/&amp;gt;&lt;/span&gt;: The blog's title.&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;data:description/&amp;gt;&lt;/span&gt;: The blog's description. &lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Blog Archives&lt;/h3&gt;The different styles provided here are for the different default options on the Page Elements tab. If you're designing a new version, it's easiest to use 'FLAT' as the style, and then manipulate the rest of the data as desired.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The title of the widget.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:style/&amp;gt;&lt;/span&gt;: One of 'MENU', 'FLAT', or 'HIERARCHY'.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:data/&amp;gt;&lt;/span&gt;: A list of each archive unit, each of which contains:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:data.name/&amp;gt;&lt;/span&gt;: The name of this archive interval, e.g. "August 2006."&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt;&amp;nbsp; &amp;lt;data:data.url/&amp;gt;&lt;/span&gt;: The link to the page containing posts from this interval.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:data.post-count/&amp;gt;&lt;/span&gt;: How many posts there are in this interval.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Profile Widget&lt;/h3&gt;For a blog with a single author, the profile widget contains the following information. Note that to access different parts of the photo data, you'll use notation such as &amp;lt;data:photo.url/&amp;gt;.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The title of the widget.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:userUrl/&amp;gt;&lt;/span&gt;: The author's profile URL.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:location/&amp;gt;:&lt;/span&gt; The location from the author's profile.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:aboutme/&amp;gt;&lt;/span&gt;: The &amp;amp;quot;About Me&amp;amp;quot; information from the profile.&lt;/li&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;data:displayname&amp;gt;&lt;/span&gt;: The author's display name.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:photo/&amp;gt;&lt;/span&gt;: The user's profile photo, made up of the following:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:photo.url/&amp;gt;&lt;/span&gt;: The photo URL.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:photo.width/&amp;gt;&lt;/span&gt;: The photo's width, in pixels.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:photo.height/&amp;gt;&lt;/span&gt;: The photo's height, in pixels.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:photo.alt/&amp;gt;&lt;/span&gt;: The &amp;amp;quot;alt&amp;amp;quot; text for the photo.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;On team blogs, the profile widget contains less information about more authors, as follows.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The title of the widget.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:authors/&amp;gt;&lt;/span&gt;: The list of all authors, each of which contains the following:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:authors.displayname&amp;gt;&lt;/span&gt;: The author's display name.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:authors.userURL/&amp;gt;&lt;/span&gt;: The author's profile URL.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;If you want to design your template to handle both single- and multiple-author blogs, you can use the data:team variable to distinguish between the two cases. E.g.&lt;span style="color: red;"&gt; &amp;lt;b:if cond='data:team=="true"'&amp;gt; (display multiple authors) &amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;h3&gt;Text / HTML / JavaScript Widget&lt;/h3&gt;The Text widget and the HTML/JavaScript widget work the same way and have the same two pieces of data.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The widget's title.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:content/&amp;gt;&lt;/span&gt;: The content of the widget.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Feed Widget&lt;/h3&gt;A feed widget's content is dynamically loaded using Google AJAX API after blog is rendered in a browser. It can be styled only using CSS.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The widget's title.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:feedUrl/&amp;gt;&lt;/span&gt;: The URL of the feed.&lt;br /&gt;&lt;h3&gt;Picture Widget&lt;/h3&gt;A picture widget contains a single image, and provides all the relevant data for that image.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The title of the widget.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:sourceUrl/&amp;gt;&lt;/span&gt;: The URL of the image.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:width/&amp;gt;&lt;/span&gt;: The image's width, in pixels.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:height&amp;gt;&lt;/span&gt;: The image's height, in pixels.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:caption/&amp;gt;&lt;/span&gt;: The image caption.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Labels Widget&lt;/h3&gt;The labels widget includes a list of all labels that are in use on the blog.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&lt;span style="color: black;"&gt; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The widget title.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:labels/&amp;gt;&lt;/span&gt;: The list of labels, each of which contains:&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:labels.name/&amp;gt;&lt;/span&gt;: The text of the label.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:labels.count/&amp;gt;&lt;/span&gt;: How many posts have this label.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:labels.url/&amp;gt;&lt;/span&gt;: A link to a page displaying posts with this label.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;List Widget&lt;/h3&gt;The simplest form of a list. Each item is just a single piece of text, without any different types of data within it.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:title/&amp;gt;&lt;/span&gt;: The widget title.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:items/&amp;gt;&lt;/span&gt;: The list of items.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Link List Widget&lt;/h3&gt;A slightly fancier list, where each item has two parts to it: the text and the link.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp; &amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:title/&amp;gt;&lt;/span&gt;: The widget title.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:links/&amp;gt;&lt;/span&gt;: The list of links, each of which contains:&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:links.name/&amp;gt;&lt;/span&gt;: The link's text.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;data:links.target/&amp;gt;&lt;/span&gt;: The link's URL.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Logo Widget&lt;/h3&gt;It doesn't get any simpler than this one. Just one piece of data here.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: red;"&gt;&amp;lt;data:fullButton/&amp;gt;&lt;/span&gt;: The URL of the Blogger button you've selected.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-5103571191160605522?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/5103571191160605522/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-data-tags.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5103571191160605522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5103571191160605522'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-data-tags.html' title='How to make a blogger template : data tags - part 1'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-2300835353137881994</id><published>2011-07-18T20:00:00.000+07:00</published><updated>2011-07-18T20:00:08.599+07:00</updated><title type='text'>How to make a blogger template : inside widget - includable</title><content type='html'>In previous post ,I told you about section and widget ,and how it arranged in the template body . In this post ,I will show you what is in a widget.&lt;br /&gt;&lt;img border="0" height="240" src="http://4.bp.blogspot.com/-Nbma7KOwIq8/TiO47CfU99I/AAAAAAAABA0/8Xm85UAkmg0/s320/blogger.png" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;As we know ,a widget has an opening tag and a closing tag ,and structure like this :&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:widget [...attributes...]&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/b:widget&amp;gt;&lt;/span&gt;&lt;br /&gt;for example ,a header widget&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:widget id="header" type='HeaderView' locked="yes"/&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;.............. &lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:widget/&amp;gt;&lt;/div&gt;&lt;br /&gt;a widget contain blocks of code 'includable' inside ,like this :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:widget [...attributes...]&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;lt;b:includable id='main' var='xxx'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [insert whatever content you want here]&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='yyy' var='yyy'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [insert whatever content you want here]&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='zzz' var='zzz'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [insert whatever content you want here]&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;..........&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/b:widget&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you see blogger template file ,this is what you see ,is that right ?&lt;br /&gt;&lt;br /&gt;In each widget ,there must be one 'includable' block with id="main" .This will usually contain most or all of the content that will display for this widget ,and other 'includable' will support the main 'includable' in processing data . For example ,you have a widget which showing the subsription form ,in this widget ,there's a main 'includable' will show the form and result , and other 'includable' will get the data form ,connect to the subscription database,processing them...etc.. . Or if a widget is a car ,so the 'main includable' will be motor ,other includable will be fuel tank,spark plug,valves ,crankshaft ...&lt;br /&gt;&lt;br /&gt;An includable followed with these attributes :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;id:&lt;/b&gt; (Required) A unique identifier made up of letters and numbers.&lt;/li&gt;&lt;li&gt;&lt;b&gt;var:&lt;/b&gt; (Optional) An identifier made up of letters  and numbers, for referencing data within this section. &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;When a widget go to work , the main includable will get data ,pass data to other 'includable' for processing and then get the result back to main includable for showing result through a call stament .&lt;br /&gt;The call statement has form&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;lt;b:include name='includable id' data='variable'/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Beside the main 'includable' ,you can set the id of other 'includable' with any name you want .&lt;br /&gt;&lt;br /&gt;If you familiar to 'function ' and 'procedure' in programing ,you can understand 'includable' and 'widget' easily . The main includable work as main program ,and other includable work as function or procedure .&lt;br /&gt;&lt;br /&gt;Another example ,if you want to show post title :&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:includable id='main'&amp;gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;b:include name='show_post_title' data='i'/&amp;gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;b:includable id='show_post_title' var='p'&amp;gt;&lt;br /&gt;............&amp;nbsp; &lt;/div&gt;&lt;div style="color: red;"&gt;show post title of the post has id='p'&lt;/div&gt;&lt;div style="color: red;"&gt;..........&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;/div&gt;&lt;br /&gt;in the code above ,the main includable has a call stament for includable 'show_post_title' . The ID of the post which you want to show title is passed through variable 'i' in the main&amp;nbsp; . The includable 'show_post_title' get the value of 'i' and assign it as to variable 'p' , then show title of the post which has id='p' . The result is returned to the main includable and displayed as title of the post which has id='i' .&lt;br /&gt;&lt;br /&gt;Includes are most useful if you have a section of code that you want to repeat multiple times in different places. You can just write the code once, put it inside a b:includable, then use b:include wherever you want it to appear. If you don't need to do that, then you can just stick with the single main includable and not worry about the rest. (Note that the main includable is included automically -- &amp;lt;b:include name='main'/&amp;gt; is unnecessary.)&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Statements&lt;/h3&gt;Like any programing language ,Blogger allows us use some statement such as loop statement and condition statement in 'includable' . &lt;br /&gt;&lt;h3&gt;Loops&lt;/h3&gt;The b:loop statement repeat a section of content multiple times. This is most commonly used for printing out each post in a list of posts for a given page, or each comment, or each label, etc. The general format for using loops is this:&lt;br /&gt;&lt;br /&gt;&amp;lt;b:loop var='identifier' values='set-of-data'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; [repeated content goes here]&lt;br /&gt;&amp;lt;/b:loop&amp;gt;&lt;br /&gt;&lt;br /&gt;The 'identifier' part can be any name you choose, and will be used to stand in for each new item in the list, for instance, in the blog posts widget, posts is a list,each time through the loop. A common convention is to simply call this "i" .&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;If / Else&lt;/h3&gt;&lt;br /&gt;You can use the b:if and b:else tags to display content in some places but not others. The general format is this:&lt;br /&gt;&lt;br /&gt;&amp;lt;b:if cond='condition'&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; [content to display if condition is true]&lt;br /&gt;&amp;lt;b:else/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; [content to display if condition is false]&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;The b:else tag is optional. Without it, the result will be either the content listed in the b:if section or nothing. The closing &amp;lt;/b:if&amp;gt; is required in each case, however.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-2300835353137881994?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/2300835353137881994/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-inside.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2300835353137881994'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2300835353137881994'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-inside.html' title='How to make a blogger template : inside widget - includable'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-Nbma7KOwIq8/TiO47CfU99I/AAAAAAAABA0/8Xm85UAkmg0/s72-c/blogger.png' height='72' width='72'/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-647554979228495388</id><published>2011-07-15T20:00:00.000+07:00</published><updated>2011-07-15T20:00:20.867+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>How to make a blogger template : the body and APIs</title><content type='html'>In previous post ,I told you about the header of a blogger template . The next part should be the CSS part&amp;nbsp; ,but as you know ,we use the CSS to define how elements in body displayed (post color ,font,size...),so in this post ,I want to show you what is in the body of a template APIs and HTML markup ,then we will back to the CSS to define how they displayed .&lt;br /&gt;&lt;img border="0" height="331" src="http://2.bp.blogspot.com/-YmciBMqg5xI/Th-9xLbDBCI/AAAAAAAABAw/rg0x4C1G690/s400/7-15-2011+11-05-30+AM.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;The &lt;span style="color: red;"&gt;&amp;lt;body&amp;gt;&lt;/span&gt; part of a template is made up primarily of 'sections' and 'widgets'.&lt;br /&gt;Sections mark out areas of a page, such as the sidebar, footer, etc.&lt;br /&gt;There are many widgets in a section .&lt;br /&gt;A widget is an individual page element such as a picture, a blogroll, or anything else we can add from the Page Elements tab.&lt;br /&gt;In body part ,we can add HTML around 'sections' or add them inside 'widgets'&lt;br /&gt;&lt;br /&gt;Each section has an opening and a closing tag, looking something like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:section id='header' class='header' maxwidgets="1" showaddelement="no"&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:section&amp;gt;&lt;/div&gt;&lt;br /&gt;A &lt;span style="color: red;"&gt;&amp;lt;b:section&amp;gt;&lt;/span&gt; tag can have the following attributes:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;id - (Required) A unique name, with letters and numbers only.&lt;/li&gt;&lt;li&gt;class - (Optional) Common class names are 'navbar,' 'header,' 'main,' 'sidebar,' and 'footer.' You can use any name if you want ,or use google default . You can write some CSS tags to define how a 'class' look in CSS section . &lt;/li&gt;&lt;li&gt;maxwidgets - (Optional) The maximum number of widgets to allow in this section. If you don't specify a limit, there won't be one.&lt;/li&gt;&lt;li&gt;showaddelement - (Optional) Can be 'yes' or 'no,' with 'yes' as the default. If it is 'yes' ,you can add more widgets to this section ,in the section area ,you will see a link 'Add a Page Element' ,if the value is 'no' ,there's nothing .&lt;/li&gt;&lt;li&gt;growth - (Optional) Can be 'horizontal' or 'vertical,' with 'vertical' as the default. This determines whether widgets within this section are arranged side-by-side or stacked.&lt;/li&gt;&lt;/ul&gt;In a section ,there are many widgets , each widget can do a specific task ,for example : showing blog post content ,showing rss links ...&lt;br /&gt;A widget also has an opening and a closing tags ,like this :&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:widget id="header" type='HeaderView' locked="yes"/&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;.............. &lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:widget/&amp;gt;&lt;/div&gt;&lt;br /&gt;A widget can contain HTML tags and Blogger APIs for different works , but in the simplest form ,it's only&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;span style="color: red;"&gt;&amp;lt;b:widget id="header" type='HeaderView' locked="yes"/&amp;gt; &lt;/span&gt;&amp;lt;/b:widget/&amp;gt;&lt;/div&gt;with nothing inside ,just a placeholder indicating how the widget should be handled in Page Elements tab .&lt;br /&gt;&lt;br /&gt;A widget may have the following attributes:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; id - (Required) May contain letters and numbers only, and each widget ID in your template should be unique. A widget's ID cannot be changed without deleting the widget and creating a new one.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; type - (Required) Indicates what kind of a widget it is, and should be one of the valid widget types listed below.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; locked - (Optional) Can be 'yes' or 'no,' with 'no' as the default. A locked widget cannot be moved or deleted from the Page Elements tab.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; title - (Optional) A display title for the widget. If none is specified, a default title such as 'List1' will be used.&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pageType - (Optional) Can be 'all,' 'archive,' 'main,' or 'item,' with 'all' as the default. The widget will display only on the designated pages of your blog. (All widgets display on the Page Elements tab, regardless of thier pageType.)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;The types of widgets you can specify are:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BlogArchive&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Blog&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Feed&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Header&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HTML&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SingleImage&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LinkList&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Logo&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BlogProfile&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Navbar&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VideoBar&lt;/li&gt;&lt;li&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NewsBar&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;That's all for sections and widgets ,in the next post ,we will examine what is in a widget and APIs :D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-647554979228495388?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/647554979228495388/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-body-and.html#comment-form' title='15 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/647554979228495388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/647554979228495388'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-body-and.html' title='How to make a blogger template : the body and APIs'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-YmciBMqg5xI/Th-9xLbDBCI/AAAAAAAABAw/rg0x4C1G690/s72-c/7-15-2011+11-05-30+AM.png' height='72' width='72'/><thr:total>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-7497999063266610703</id><published>2011-07-12T20:00:00.001+07:00</published><updated>2011-07-14T17:15:58.741+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='design'/><title type='text'>How to make a blogger template : the header</title><content type='html'>As mentioned in previous post on blogger template structure ,there are 4 main parts in a blogger template . Part 1 contain information on xml format ,and we can ignore this part because there's nothing to do here .&lt;br /&gt;For the part 2 ,the header ,here is the first thing we should care for a blogger template .&lt;br /&gt;&lt;img border="0" height="133" src="http://2.bp.blogspot.com/-vaBFHFjY37Q/Th0JmUDb2VI/AAAAAAAABAs/mvsFvAX-mP0/s320/18-16_header_backgrounds.jpg" width="320" /&gt;&lt;br /&gt;In a default blogger template , there are only two lines in this part :&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;nbsp;&amp;lt;b:include data='blog' name='all-head-content'/&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;&amp;lt;data:blog.pageTitle/&amp;gt;&amp;lt;/title&amp;gt;&lt;/div&gt;&lt;br /&gt;The first line&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;nbsp;&amp;lt;b:include data='blog' name='all-head-content'/&amp;gt;&lt;/div&gt;&amp;nbsp; &lt;br /&gt;will insert necessary meta tags to the header automatically . If you view source code of a page in your blogspot's blog ,what will you see ? Something like that :&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;nbsp;&amp;lt;meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/&amp;gt; &lt;br /&gt;&amp;lt;meta content='true' name='MSSmartTagsPreventParsing'/&amp;gt; &lt;br /&gt;&amp;lt;meta content='blogger' name='generator'/&amp;gt; &lt;br /&gt;.....................&lt;/div&gt;There's no line&amp;nbsp; &lt;span style="color: lime;"&gt;&amp;lt;b:include data='blog' name='all-head-content'/&amp;gt;&lt;/span&gt;&lt;span style="color: red;"&gt; .&lt;/span&gt;&lt;br /&gt;It's replaced with meta tags , links to favicon ,link to default CSS, script file... &lt;br /&gt;&lt;br /&gt;The next one&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;title&amp;gt;&amp;lt;data:blog.pageTitle/&amp;gt;&amp;lt;/title&amp;gt;&lt;/div&gt;is rendered to the title tag in header &lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;title&amp;gt;blog titles .....blah blah ...&amp;lt;/title&amp;gt;&amp;nbsp;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;What should we do with header ?&lt;/h3&gt;-You can add your own meta tags for 'site description' ,'keywords' , like these :&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;meta content='your blog description goes here' name='description'/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta content='your blog keywords ....' name='keywords'/&amp;gt;&amp;nbsp;&amp;nbsp; &lt;/div&gt;-Add your own favicon&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;link href='link to your favicon.ico' rel='icon' type='image/vnd.microsoft.icon'/&amp;gt;&lt;/div&gt;-Add link to outside script files or css files&lt;br /&gt;&lt;h3&gt;A small tip &lt;/h3&gt;Every page in blog should have description and keywords that close to the page's content,it's what google said in their SEO tip . &lt;br /&gt;In Blogger ,we can't follow this advice exactly ,but we can try our best ,by using what Blogger provide .&lt;br /&gt;&lt;br /&gt;We can use this code in the header &lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:if cond='data:blog.pageType == &amp;amp;quot;index&amp;amp;quot;'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;&amp;lt;title&amp;gt;&amp;lt;data:blog.title/&amp;gt;&amp;lt;/title&amp;gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;......... meta tags for the homepage ....  &lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;b:else/&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;b:if cond='data:blog.pageType == &amp;amp;quot;archive&amp;amp;quot;'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;&amp;lt;title&amp;gt;&amp;lt;data:blog.title/&amp;gt;&amp;lt;/title&amp;gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;....meta tags for category page (or archive page)....&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;b:else/&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;b:if cond='data:blog.pageType == &amp;amp;quot;item&amp;amp;quot;'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;&amp;lt;title&amp;gt;&amp;lt;data:blog.pageName/&amp;gt;&amp;lt;/title&amp;gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt;.... meta tags for single post ...&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:if&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:if&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:if&amp;gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;The code above means :&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;-if the current page is homepage ,it show the meta tags for homepage in header and blog title in title&lt;br /&gt;-if the current page is category page ( page that contain a list of posts under a specific category ) ,it show the meta tags for category page in header and blog title in title &lt;br /&gt;-if the current page is a single post ,it show meta tags in header and title of post in title .&lt;br /&gt;&lt;br /&gt;By using this code ,we can narrow the meta tag (keywords,page description) and title for every page type . Although we can't add keywords ,page description for a specific post ,but it's still better than do nothing ,isn't it ?&lt;br /&gt;That's all for the header . In the next posts ,I will move to other parts in a blogger template , steps to make a HTML template , convert it to Blogger , and tools for this work .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-7497999063266610703?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/7497999063266610703/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-header.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7497999063266610703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7497999063266610703'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-header.html' title='How to make a blogger template : the header'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-vaBFHFjY37Q/Th0JmUDb2VI/AAAAAAAABAs/mvsFvAX-mP0/s72-c/18-16_header_backgrounds.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-131877325268343122</id><published>2011-07-11T20:00:00.001+07:00</published><updated>2011-07-11T20:00:01.655+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>How to make a blogger template : Blogger template structure</title><content type='html'>Blogger team tried to make their product more easier to use and customization for all users with their template design funtion . If you want some changes in fonts ,background ,layout...,this function can help you . But if you want more ? want to make your own blogger blog look like a professional website ? It's time you need to know something about structure of blogger template ,apis ,scripts ... to make your own . &lt;br /&gt;I will make a post series on How to make a blogger template ,so you can make one for yourself or can do the customizsation easily . I will try to make it short ,and easy to understand , hope it helpful for you .&lt;br /&gt;&lt;br /&gt;&lt;img border="0" height="160" src="http://1.bp.blogspot.com/-u4malcbD1Ow/ThpqAJ_4ygI/AAAAAAAABAo/A4KC6MDJV30/s320/basic-structure.jpg" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;Here is the first post on this topic : Blogger template structure &lt;br /&gt;&lt;br /&gt;Blogger template is written in xml markup language ,a&amp;nbsp; complete template has 4 section as mentioned bellow(this is my way to describe a template ,not Google ^^ )&lt;br /&gt;&lt;br /&gt;1,The first section will contain something like this&lt;br /&gt;This part will define the document bellow is in xml format ,the standard of this xml ,and something else related . I'm not a professional developer and do not know much on xml ,so I can't explain you more about this part ^^ This part is required but fortunately ,we don't need to make anychanges on them .&lt;br /&gt;&lt;br /&gt;2,The second section : This section start from &lt;span style="color: red;"&gt;&amp;lt;head&amp;gt;&lt;/span&gt; to &lt;span style="color: red;"&gt;&amp;lt;b:skin&amp;gt;&lt;/span&gt; , it contain necessary tags for header ,meta tags , link to favicon... like other html documents . In this section ,we can add favicon ,adding some meta tags for description ,keywords ..&lt;br /&gt;&lt;br /&gt;3,The third section : Start from &lt;span style="color: red;"&gt;&amp;lt;b:skin&amp;gt;&lt;/span&gt; and end at &lt;span style="color: red;"&gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt; ,it contain CSS tags ,that set the appearance of your blog . This CSS define how an element in blog look like ,such as text color ,font size ,color ,background ... All tags in this part are follow the standard of CSS without any exception or 'CSS tags for Blogger only' ,so if you have some basic knowledge on this field ,you can easily modify them as you want .&lt;br /&gt;&lt;br /&gt;4,The forth part start from &lt;span style="color: red;"&gt;&amp;lt;body&amp;gt;&lt;/span&gt; end at &lt;span style="color: red;"&gt;&amp;lt;/body&amp;gt;&amp;nbsp;&lt;/span&gt; :&amp;nbsp; the main part of a template ,it made up primarily with 'section' and 'widget' . In sections and widgets ,there are Blogger APIs for specific tasks .&lt;br /&gt;&lt;i&gt;We have many 'sections' ,one for showing posts ,others for show banner in header ,or showing footer ...&lt;/i&gt;&lt;br /&gt;&lt;i&gt;In the section for showing post ,we have widget for showing single post , widget for showing posts in categories ,widget for showing posts in homepage ...&lt;/i&gt;&lt;br /&gt;&lt;i&gt;In a widget ,for instance ,widget showing single post ,we have Blogger APIs for showing date ,time ,post header ,post body ...&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Beside APIs,we can use HTML tags to arrange elements and make them display as we want .&lt;br /&gt;This is similar to Wordpress template ,if you ever work with them before .&lt;br /&gt;&lt;br /&gt;Other element that I usually use in Simplex's template is scripts . Scripts can be anywhere in part 3 and 4 ,but in some cases ,we need to grouped them or move them to the end of template (before &lt;span style="color: red;"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt; ) to avoid conflicting .&lt;br /&gt;That's all for template structure ,in the next posts ,I will go deeper in each part .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-131877325268343122?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/131877325268343122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-blogger.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/131877325268343122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/131877325268343122'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-make-blogger-template-blogger.html' title='How to make a blogger template : Blogger template structure'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-u4malcbD1Ow/ThpqAJ_4ygI/AAAAAAAABAo/A4KC6MDJV30/s72-c/basic-structure.jpg' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-6542538421898202333</id><published>2011-07-07T20:00:00.001+07:00</published><updated>2011-07-14T08:24:46.932+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SEO'/><title type='text'>Why Every Programmer Should Learn SEO - and Vice Versa</title><content type='html'>&lt;i&gt;This article was written by Anthony Benedict.&lt;/i&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-HpNuCj6umiI/ThVdo_-sT5I/AAAAAAAABAk/4oH5mWWvfoU/s1600/images.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="149" src="http://1.bp.blogspot.com/-HpNuCj6umiI/ThVdo_-sT5I/AAAAAAAABAk/4oH5mWWvfoU/s320/images.jpeg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;In the business world that doesn't involve coding, link building, programming, designing, writing for the Internet or one of the many other jobs that can be done with an Internet connection and a decent computer - all these jobs are grouped into one type of position. People with jobs like these are known to outsiders as the "computer people" and many of them think that all of them pretty much do the same things - which can be summed up for the most part as designing websites.&lt;br /&gt;&lt;br /&gt;Although all of us that partake in these types of jobs know that this is not at all the case, there &lt;i&gt;should&lt;/i&gt; be a little bit of truth to that claim, as every person involved in SEO should be at least a little bit involved in programming - and every programmer (well not every single type of programmer actually) should be at least a familiar with SEO.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Why "SEO's" Should Know a Little bit of Coding/Programming&lt;/h3&gt;&lt;br /&gt;First of all as an SEO you should know that coding and programming isn’t at all the same thing. There are some very advanced types of programming that you will probably never have the time in your life to learn - and that does not include the basic types of coding like HTML and CSS, although these are two great places to start.&lt;br /&gt;&lt;br /&gt;One of the main reasons you should learn about CSS and HTML (and even JavaScript) is that having the best formatting within your coding can &lt;a href="http://www.blogger.com/%E2%80%9Dhttp://w3c-compliant.com/2011/06/combining-css-javascript-and-html-with-seo/%E2%80%9D"&gt;tremendously help your SEO&lt;/a&gt;. Just like browsers, Google is "likes" light weight coding and its spiders can crawl and read it a lot faster, thus allowing you to get indexed much quicker. &lt;br /&gt;&lt;br /&gt;Another reason an SEO should learn a little bit of programming is that it will give you new ideas on how to attack old problems. It will help you learn what you are wasting your time on, what can be automated, and help you to solve your problem on an exponential platform. You don't have to become an expert in the field of programming, but just doing a little bit of dabbling in it will help you get a better idea of sorts of things that can be done that you didn't even think were possible. In fact just a simple conversation with a programmer and seeing what he has to say or what he can do for you will help with that.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Why Programmers Should Learn SEO&lt;/h3&gt;&lt;br /&gt;Whether you are a web site designer or a hardcore programmer - you should know one thing. There is a lot of money involved in the world of SEO. And since SEO is very much related to what you will be able to do on the computer - designing programs around SEO tactics, needs, services, and even companies. As a freelancing programmer, the world of SEO, &lt;a href="http://www.inetzeal.com/website-optimization/"&gt;link building&lt;/a&gt;, and content writing can really give you some great ideas. In fact some SEO businesses are found on great programs that allow SEO's to automate a lot of the tedious work that comes with Internet marketing.&lt;br /&gt;&lt;br /&gt;Of course another reason one should learn SEO because owning a website is the best way to market what you are trying to sell. And the best way to market you website is by learning about SEO. Even learning the basics is essential for hiring a company to do all your SEO for you - otherwise you may up over paying for services that may never even pan out.&lt;br /&gt;&lt;br /&gt;Being a web developer or programmer with an SEO background, or specializing in Internet marketing with a little bit of a computer science background is a very impressive resume - and many companies (even ones that do not have to do with he Internet) love seeing that type of combination. Being able to have your mind at least somewhat wrapped around both concepts will open many doors for you - whether you are working for a corporation or starting your own business.&lt;br /&gt;&lt;br /&gt;&lt;div class="author" style="background: none repeat scroll 0% 0% rgb(248, 248, 248); border: medium none rgb(221, 221, 221); padding: 10px;"&gt;&lt;h4&gt;About Author&lt;/h4&gt;This article was written by Anthony Benedict. Anthony helps to run and maintain inetzeal.com. inetzeal.com is an Internet marketing company that provides many services - including an ever popular white label &lt;a href="http://www.inetzeal.com/"&gt;link building service&lt;/a&gt;.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-6542538421898202333?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/6542538421898202333/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/why-every-programmer-should-learn-seo.html#comment-form' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/6542538421898202333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/6542538421898202333'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/why-every-programmer-should-learn-seo.html' title='Why Every Programmer Should Learn SEO - and Vice Versa'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-HpNuCj6umiI/ThVdo_-sT5I/AAAAAAAABAk/4oH5mWWvfoU/s72-c/images.jpeg' height='72' width='72'/><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-5295717625253452874</id><published>2011-07-06T20:00:00.001+07:00</published><updated>2011-07-06T20:00:08.399+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='design'/><title type='text'>How to solve CSS errors in Blogger template using Firebug</title><content type='html'>Knowing CSS can help you in solving Blogger template errors ,or make some customization . But how to do that ? how to find where is the trouble or find what CSS attribute you need to change when&amp;nbsp; make customization ? In this post ,I will show you what I did : using Firebug (a Firefox add-on ) to work with CSS .&lt;br /&gt;Firebug is a great add-on of Firefox browser ,it's very popular in web development because it can help us inspecting website elements ,debugging errors in CSS ,script ,seeing web layout ....&lt;br /&gt;To use Firebug ,first ,Firefox browser must be installed in your PC . Then go to website : &lt;a href="http://getfirebug.com/"&gt;http://getfirebug.com/&lt;/a&gt; ,click on Install Firebug to get the latest version and installed this add-on to Firefox .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-I9WkJNPOqAU/ThPf4tlYMhI/AAAAAAAABAE/r1PTXomTvek/s1600/7-6-2011+11-05-20+AM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="138" src="http://2.bp.blogspot.com/-I9WkJNPOqAU/ThPf4tlYMhI/AAAAAAAABAE/r1PTXomTvek/s400/7-6-2011+11-05-20+AM.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;After installing Firebug ,you will see an new button in browser window ,this button has the image of a bug .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-X6_V4TAxNQk/ThPf5QwuWHI/AAAAAAAABAI/nnhkEC0nOVE/s1600/7-6-2011+11-05-58+AM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-X6_V4TAxNQk/ThPf5QwuWHI/AAAAAAAABAI/nnhkEC0nOVE/s1600/7-6-2011+11-05-58+AM.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Enter the Blogger blog you want to fix errors or make customization&lt;br /&gt;When the page fully loaded ,click on firebug button ,the firebug window will appear at the bottom of browser window .&lt;br /&gt;&lt;br /&gt;Click on the arrow button in firebug window&lt;br /&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/-X6_V4TAxNQk/ThPf5QwuWHI/AAAAAAAABAI/nnhkEC0nOVE/s1600/7-6-2011+11-05-58+AM.png" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-X6_V4TAxNQk/ThPf5QwuWHI/AAAAAAAABAI/nnhkEC0nOVE/s1600/7-6-2011+11-05-58+AM.png" /&gt;&lt;/a&gt;&lt;br /&gt;After click this button ,there will be a rectangle around the element that the mouse is pointing .&amp;nbsp; Move your mouse pointer to the element you want to change size or fix error&lt;br /&gt;In the right panel of firebug window ,you will see the CSS tags of element which you are pointing .&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-_HdJ9L4pQpQ/ThPf6aj4koI/AAAAAAAABAM/KGANMYy-Fek/s1600/7-6-2011+11-06-42+AM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="290" src="http://1.bp.blogspot.com/-_HdJ9L4pQpQ/ThPf6aj4koI/AAAAAAAABAM/KGANMYy-Fek/s400/7-6-2011+11-06-42+AM.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;You can click on the value of these CSS attributes to change value of them ,for example ,in this picture ,I changed &lt;i&gt;width&lt;/i&gt; of an element in the right panel ,and see how it look after changing immediately in browser window .&lt;br /&gt;You can also add more attributes to a CSS tags to make it display as you want ,for example ,you want color of all text in an element changed to white color,just right click on right-panel and ,choose new property ,and then add &lt;i&gt;color:#fff;&lt;/i&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-eC6MbjHAs1g/ThPf8RNcLQI/AAAAAAAABAQ/dGG9ntxme9Q/s1600/7-6-2011+11-07-57+AM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="246" src="http://4.bp.blogspot.com/-eC6MbjHAs1g/ThPf8RNcLQI/AAAAAAAABAQ/dGG9ntxme9Q/s320/7-6-2011+11-07-57+AM.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;That's very easy and fun because you can see how your site is right after making changes .&lt;br /&gt;&lt;br /&gt;But how to know which CSS need to change ,or meaning of CSS tags or what need to add to make it display as you want ? You can see it easily in my previous post : &lt;a href="http://simplexdesign.blogspot.com/2011/07/31-online-css-cheatsheets-that-help.html"&gt;31 online CSS cheatsheets that may helpful&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;You can use Firebug to see the element layout ,the right or left margin ,padding... in Layout tab in right panel .&lt;br /&gt;When you finish the work ,just go to Blogger template (xml file) ,and add the tags or attributes that you've just added in Firebugs to your template .&lt;br /&gt;There're many functions that Firebug can help you in finding bugs and fixing errors .It's very easy to use ,believe me ,just need a little of time ,you can handle this software and make it work for you ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-5295717625253452874?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/5295717625253452874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-solve-css-errors-in-blogger.html#comment-form' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5295717625253452874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5295717625253452874'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/how-to-solve-css-errors-in-blogger.html' title='How to solve CSS errors in Blogger template using Firebug'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-I9WkJNPOqAU/ThPf4tlYMhI/AAAAAAAABAE/r1PTXomTvek/s72-c/7-6-2011+11-05-20+AM.png' height='72' width='72'/><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-152144304799791960</id><published>2011-07-05T20:00:00.001+07:00</published><updated>2011-07-07T08:39:00.457+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebies'/><category scheme='http://www.blogger.com/atom/ns#' term='design'/><title type='text'>31 online CSS Cheatsheets that help</title><content type='html'>Believe it or not ,most of modifications in default Blogger templates that I did were CSS only . And the result are custom templates you see in SimplexDesign blog .Understanding CSS ,even a little can help you in changing elements in website/blog as you want .Changing in Font size,colors ,size of elements ,positions of elements... all of them are CSS ^^&lt;br /&gt;But how can we remember all of them ,we are not developer and we have no time to do this . So here are 30 CSS cheatsheets ,that you can use for reference ,anytime you want to know about an attribute ,what they mean ,and the role of them ...&lt;br /&gt;I hope this helpful to you&lt;br /&gt;This information was found on &lt;a href="http://slodive.com/freebies/css-cheat-sheets/"&gt;this site&lt;/a&gt; ,and you can go there to get the original post and more interesting posts&lt;br /&gt;This article is divided in 2 major Sections:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;a href="http://slodive.com/freebies/css-cheat-sheets/#beg"&gt;CSS Cheatsheets&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://slodive.com/freebies/css-cheat-sheets/#css3"&gt;CSS3 Cheatsheets&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h3&gt;1,Most Practical CSS Cheat Sheet Yet&lt;/h3&gt;&lt;a href="http://www.pxleyes.com/blog/2010/03/most-practical-css-cheat-sheet-yet/" rel="nofollow" target="_blank"&gt;&lt;img alt="Most Practical CSS Cheat Sheet Yet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/most-practical-css-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.pxleyes.com/blog/2010/03/most-practical-css-cheat-sheet-yet/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on Most Practical CSS Cheat Sheet Yet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.blogger.com/post-create.g?blogID=3261648057722628801" name="beg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;h2&gt;CSS Cheatsheets&lt;/h2&gt;&lt;h3&gt;2,CSS2 Help Sheet&lt;/h3&gt;&lt;a href="http://downloads.gosquared.com/help_sheets/10/CSS%20Help%20Sheet%20outlined.pdf" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS2 Help Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-help-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://downloads.gosquared.com/help_sheets/10/CSS%20Help%20Sheet%20outlined.pdf" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS2 Help Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;3,Core CSS&lt;/h3&gt;&lt;a href="http://refcardz.dzone.com/refcardz/corecss-part1" rel="nofollow" target="_blank"&gt;&lt;img alt="Core CSS" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/corecss.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://refcardz.dzone.com/refcardz/corecss-part1" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on Core CSS&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;4,CSS Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;5,Basic CSS Cheat Sheet&lt;/h3&gt;&lt;a href="http://webdesign.about.com/od/css/a/css_cheat_sheet.htm" rel="nofollow" target="_blank"&gt;&lt;img alt="Basic CSS Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-help-sheets.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://webdesign.about.com/od/css/a/css_cheat_sheet.htm" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on Basic CSS Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;6,CSS CHEAT SHEET&lt;/h3&gt;&lt;a href="http://lesliefranke.com/files/reference/csscheatsheet.html" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS CHEAT SHEET" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/csscheatsheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://lesliefranke.com/files/reference/csscheatsheet.html" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS CHEAT SHEET&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;7,CSS Layout Cheat Sheet&lt;/h3&gt;&lt;a href="http://webdesign.about.com/od/css/l/css_layout_cheat_sheet.pdft" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Layout Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-llayout-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://webdesign.about.com/od/css/l/css_layout_cheat_sheet.pdf" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Layout Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;8,CSS Font Shorthand Property Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.impressivewebs.com/css-font-shorthand-property-cheat-sheet/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Font Shorthand Property Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-font-shorthand-property-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.impressivewebs.com/css-font-shorthand-property-cheat-sheet/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Font Shorthand Property Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;9,CHEAT SHEET CSS SHORTHAND CODES&lt;/h3&gt;&lt;a href="http://www.wepapers.com/Papers/15085/CHEAT_SHEET_CSS_SHORTHAND_CODES" rel="nofollow" target="_blank"&gt;&lt;img alt="CHEAT SHEET CSS SHORTHAND CODES" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/shorthand-codes-css.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.wepapers.com/Papers/15085/CHEAT_SHEET_CSS_SHORTHAND_CODES" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CHEAT SHEET CSS SHORTHAND CODES&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;10,Blueprint CSS Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.christianmontoya.com/2007/11/12/blueprint-css-cheat-sheet/" rel="nofollow" target="_blank"&gt;&lt;img alt="Blueprint CSS Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/blueprint-css-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.christianmontoya.com/2007/11/12/blueprint-css-cheat-sheet/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on Blueprint CSS Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;11,CSS Shorthand Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.eddiewelker.com/wp-content/uploads/2007/09/csscheatsheet.pdf" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Shorthand Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/csshelpsheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.eddiewelker.com/wp-content/uploads/2007/09/csscheatsheet.pdf" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Shorthand Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;12,CSS Cheat Sheets&lt;/h3&gt;&lt;a href="http://yuiblog.com/assets/pdf/cheatsheets/css.pdf" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Cheat Sheets" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/many-cheat-sheets.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://yuiblog.com/assets/pdf/cheatsheets/css.pdf" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Cheat Sheets&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;13,CSS Shorthand&lt;/h3&gt;&lt;a href="http://forum.leigeber.com/index.php?app=downloads&amp;amp;showfile=9" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Shorthand" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-shorthand.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://forum.leigeber.com/index.php?app=downloads&amp;amp;showfile=9" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Shorthand&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;14,CSS Specificity – Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.vcarrer.com/2009/09/css-specificity-cheat-sheet.html" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Specificity - Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-specificity-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.vcarrer.com/2009/09/css-specificity-cheat-sheet.html" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Specificity – Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;15,CSS Shorthand Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.scriptiny.com/2008/04/css-shorthand-cheat-sheet/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Shorthand Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-shorthand-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.scriptiny.com/2008/04/css-shorthand-cheat-sheet/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Shorthand Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;16,CSS Cheatsheet&lt;/h3&gt;&lt;a href="http://idea3.rit.edu/donbeil3/inet2/misc/cheatsheet/cheatsheet.htm" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Cheatsheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/cheatsheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://idea3.rit.edu/donbeil3/inet2/misc/cheatsheet/cheatsheet.htm" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Cheatsheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;17,CSS Properties and Values&lt;/h3&gt;&lt;a href="http://www.elizabethcastro.com/html/extras/cssref.html" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Properties and Values" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/cssref.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elizabethcastro.com/html/extras/cssref.html" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Properties and Values&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;18,CSS Cheat Sheet&lt;/h3&gt;&lt;a href="http://www.communitymx.com/content/article.cfm?cid=2795D" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/propidx.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.communitymx.com/content/article.cfm?cid=2795D" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;19,Cascading Style Sheets Quick Reference&lt;/h3&gt;&lt;a href="http://libertyboy.free.fr/computing/reference/css/index.php" rel="nofollow" target="_blank"&gt;&lt;img alt="Cascading Style Sheets Quick Reference" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://libertyboy.free.fr/computing/reference/css/index.php" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on Cascading Style Sheets Quick Reference&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.blogger.com/post-create.g?blogID=3261648057722628801" name="css3"&gt;&lt;/a&gt;&lt;br /&gt;&lt;h2&gt;20,CSS3 Cheatsheets&lt;/h2&gt;&lt;h3&gt;CSS3 Click Chart&lt;/h3&gt;&lt;a href="http://www.impressivewebs.com/css3-click-chart/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS3 Click Chart" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3-click-chart.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.impressivewebs.com/css3-click-chart/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS3 Click Chart&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;21,CSS3 Help Sheet.&lt;/h3&gt;&lt;a href="http://downloads.gosquared.com/help_sheets/10/CSS3-Help-Sheet-large.jpg" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS3 Help Sheet." height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3-help-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://downloads.gosquared.com/help_sheets/10/CSS3-Help-Sheet-large.jpg" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS3 Help Sheet.&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;22,CSS 3 selector syntax&lt;/h3&gt;&lt;a href="http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS 3 selector syntax" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-3-selectors.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS 3 selector syntax&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;23,CSS3 Quick Reference Guide&lt;/h3&gt;&lt;a href="http://www.css3.info/css3-quick-reference-guide/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS3 Quick Reference Guide" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3-guide.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.css3.info/css3-quick-reference-guide/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS3 Quick Reference Guide&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;24,CSS 3 Cheat Sheet&lt;/h3&gt;&lt;a href="http://coding.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS 3 Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-3-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://coding.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS 3 Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;25,WebKit CSS3 Cheat Sheet&lt;/h3&gt;&lt;a href="http://downloads.sencha.com/extras/css3-cheat-sheet.pdf" rel="nofollow" target="_blank"&gt;&lt;img alt="WebKit CSS3 Cheat Sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://downloads.sencha.com/extras/css3-cheat-sheet.pdf" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on WebKit CSS3 Cheat Sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;26,CSS3 Color Names&lt;/h3&gt;&lt;a href="http://www.codenique.com/web_color/css3_color_names.php" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS3 Color Names" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3-color-names.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.codenique.com/web_color/css3_color_names.php" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS3 Color Names&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;27,HTML5 and CSS 3 Cheat Sheets&lt;/h3&gt;&lt;a href="http://blog.hattersworkshop.com/2011/01/10/html5-and-css-3-cheat-sheets/" rel="nofollow" target="_blank"&gt;&lt;img alt="HTML5 and CSS 3 Cheat Sheets" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3preview.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://blog.hattersworkshop.com/2011/01/10/html5-and-css-3-cheat-sheets/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on HTML5 and CSS 3 Cheat Sheets&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;28,HTML5 &amp;amp; CSS3 Support&lt;/h3&gt;&lt;a href="http://www.findmebyip.com/litmus/" rel="nofollow" target="_blank"&gt;&lt;img alt="HTML5 &amp;amp; CSS3 Support" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css3-support.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.findmebyip.com/litmus/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on HTML5 &amp;amp; CSS3 Support&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;29,CSS 3 cheat sheet&lt;/h3&gt;&lt;a href="http://warpedvisions.org/projects/css-3-cheat-sheet/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS 3 cheat sheet" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-3-cheat-sheet.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://warpedvisions.org/projects/css-3-cheat-sheet/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS 3 cheat sheet&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;30,Compatibility tables for support of CSS3&lt;/h3&gt;&lt;a href="http://caniuse.com/" rel="nofollow" target="_blank"&gt;&lt;img alt="Compatibility tables for support of CSS3" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/compatibility-table.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://caniuse.com/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on Compatibility tables for support of CSS3&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;h3&gt;31,CSS3 – Information and samples&lt;/h3&gt;&lt;a href="http://robertnyman.com/css3/" rel="nofollow" target="_blank"&gt;&lt;img alt="CSS3 - Information and samples" height="300" src="http://slodive.com/wp-content/uploads/2011/07/css-cheat-sheets/css-compatibility-table.jpg" width="600" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://robertnyman.com/css3/" target="_blank"&gt;&lt;b&gt;&lt;i&gt;More Information on CSS3 – Information and samples&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;i&gt;&lt;span style="color: red;"&gt;(Source : http://slodive.com/freebies/css-cheat-sheets/ ) &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-152144304799791960?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/152144304799791960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/31-online-css-cheatsheets-that-help.html#comment-form' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/152144304799791960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/152144304799791960'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/31-online-css-cheatsheets-that-help.html' title='31 online CSS Cheatsheets that help'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-8926350815357955651</id><published>2011-07-04T20:00:00.002+07:00</published><updated>2011-07-04T20:00:02.638+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebies'/><category scheme='http://www.blogger.com/atom/ns#' term='design'/><title type='text'>Nature business card template for free</title><content type='html'>I took an eye surgery two weeks ago and now I think my eyes are good enough to use computer again . Now is the time for me to answering comments and post something new after a long delay ^^&lt;br /&gt;Thanks for still coming in my blog and keep supporting me in this time .&lt;br /&gt;&lt;br /&gt;In this post ,I want to show you a freebie,a beautiful nature business card template in psd (Photoshop file format ) , just need some changes in name ,address... and it's ready to use&lt;br /&gt;&lt;br /&gt;Designed by &lt;a href="http://ibrandstudio.com/freebies/beautiful-nature-business-card-template"&gt;iBrandstudio&lt;/a&gt; ,this free business card  is have very beautiful nature background with the atmosphere in the  afternoon when the sun goes down. Come with double sided template with  3.5″x2″ in business card size, ready for print and highly customizable.  The business card design that perfect for anyone. &lt;br /&gt;&lt;br /&gt;You can use this business card template  for free, both your personal and commercial project but do not  redistribute or resell. &lt;br /&gt;&lt;h3&gt;Features&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Beautiful nature design&lt;/li&gt;&lt;li&gt;Highly customizable – Layered PSD and well organized&lt;/li&gt;&lt;li&gt;Ready for print with bleed lines and trim guidelines&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Details&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Date created : July 3, 2011&lt;/li&gt;&lt;li&gt;Font used : Arial and &lt;a href="http://www.fonts2u.com/lobster14.font"&gt;Lobster 1.4&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Size : 3.5”x2”&lt;/li&gt;&lt;li&gt;Color : CMYK&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Preview&lt;/h3&gt;&lt;img alt="free beautiful nature business card template" class="aligncenter size-full wp-image-4035" height="1232" src="http://ibrandstudio.com/wp-content/uploads/2011/07/preview-free-business-card-template-beautiful-nature.jpg" title="free-beautiful-nature-business-card-template" width="550" /&gt;&lt;br /&gt;&lt;h3&gt;&lt;a href="http://ibrandstudio.com/filedownload/beautiful-nature-business-card-template.zip"&gt;Download&lt;/a&gt;&lt;/h3&gt;&lt;a class="downloadlink" href="http://ibrandstudio.com/filedownload/beautiful-nature-business-card-template.zip" title=" downloaded 16 times"&gt; &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Have fun with it !&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-8926350815357955651?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/8926350815357955651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/07/nature-business-card-template-for-free.html#comment-form' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/8926350815357955651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/8926350815357955651'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/07/nature-business-card-template-for-free.html' title='Nature business card template for free'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-5538062064707730826</id><published>2011-06-20T22:24:00.019+07:00</published><updated>2011-06-20T22:24:00.109+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Useful online mind mapping and brainstorming tools</title><content type='html'>Concept mapping and Mind mapping software are used to create diagrams of relationships between concepts, ideas or other pieces of information,by using this ,all ideas are connected and we get a greater image . It is used by individuals, corporate teams, students and teachers alike for various purposes.&lt;br /&gt;As bloggers,we can use this technique for brainstorming ,getting new idea for blogging . In this post, I want to show you some online tools for mind mapping .&lt;br /&gt;&lt;h4&gt;1. &lt;a href="http://www.spiderscribe.net/" target="_blank"&gt;Spider scribe&lt;/a&gt;&lt;/h4&gt;&lt;a href="http://www.spiderscribe.net/" target="_blank"&gt;&lt;img alt="Spiderscribe" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Spiderscribe.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;SpiderScribe is a user friendly, free and online collaborative mind  mapping tool for project management and brainstorming. With this  flexible tool you can create freestyle and multi-directional maps – and  combine them with elements such as images, text, files, calendar events  and geographic locations.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;2. &lt;a href="http://www.mindmeister.com/" target="_blank"&gt;Mindmeister&lt;/a&gt;&lt;/h4&gt;&lt;a href="http://www.mindmeister.com/" target="_blank"&gt;&lt;img alt="mind meister" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/mindmeister.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;MindMeister is the most simplistic mind mapping tool , but its simplicity is definitely an asset. Once you’re logged  into the service, you can create a fully functionalmind map using little  more than the directional arrows and the Insert key to add new nodes to  your map.You can set font size ,node colors ... ,and exporting file to popular format PDF, JPG, PNG,  or GIF. &lt;br /&gt;&lt;br /&gt;&lt;h4&gt;3. &lt;a href="http://www.wisemapping.com/c/home.htm" target="_blank"&gt;WiseMapping&lt;/a&gt;&lt;/h4&gt;&lt;a href="http://www.wisemapping.com/"&gt;&lt;img alt="wisemapping" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/wisemapping_thumb.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;WiseMapping is a free online mindmapping and collaboration tool which  helps in Creating mind maps online, invite friends as contributors (useful when working in a team),  save maps as PDF, and more. The drag’n’drop capabilities of  WiseMapping make it easy to build up your diagram.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;4. &lt;a href="http://mind42.com/" target="_blank"&gt;Mind42&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://mind42.com/" target="_blank"&gt;&lt;img alt="Mind42" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Mind42.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Cool mind mapping tool for creating highly customizable organization  charts. Each chart node can be colored, converted to an image,  supplemented with a custom icon, link, attachment and more.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;5. &lt;a href="http://www.mindomo.com/" target="_blank"&gt;Mindomo&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://www.mindomo.com/" target="_blank"&gt;&lt;img alt="Mindomo" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Mindomo.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Mindomo is an online mind map Software where users  can create, view and share mind maps in their browser. Mindomo is offering the basic services for  free, while charging for advanced features. Unregistered users can view  the mind maps, while registered users are permitted to create and share  mind maps.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;6. &lt;a href="http://www.gliffy.com/" target="_blank"&gt;Gliffy&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://www.gliffy.com/" target="_blank"&gt;&lt;img alt="Gliffy" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Gliffy.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Extremely powerful techy-oriented diagram creation and collaboration  tool, create anything from basic flow-chart diagrams to well-documented  troubleshooting guides. &lt;br /&gt;&lt;br /&gt;&lt;h4&gt;7. &lt;a href="http://www.xmind.net/" target="_blank"&gt;XMind&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://www.xmind.net/" target="_blank"&gt;&lt;img alt="Xmind" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Xmind.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The interface is simple and intuitive to use. You can quickly move  through your entire mind map with only a handful of keystrokes or jump  over to the outline view for even quicker navigation. In addition to a  basic mind map you can also create fishbone, organizational, tree, and  logic charts. You can export charts as HTML, images, or text, and XMind  comes a free account on XMind.net which allows you to share your charts  online and embed them into blogs and web sites.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;8. &lt;a href="http://www.glinkr.net/" target="_blank"&gt;Glinkr&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://www.glinkr.net/" target="_blank"&gt;&lt;img alt="Glinkr" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Glinkr.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Map and share your views of contents on the Web.It's a free tool,easy to use .&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;9. &lt;a href="http://a.freshbrain.com/solvr/" target="_blank"&gt;Solvr&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://a.freshbrain.com/solvr/" target="_blank"&gt;&lt;img alt="Solvr" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/Solvr.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;An interesting tool for getting solutions from others . You have a problem ,share it on Solvr, you have a link ,you can send this link to your friends ,or submit it to a forum,social networks .Every people who have the link can go to Solvr and share the solution to solve the problem . &lt;br /&gt;&lt;br /&gt;&lt;h4&gt;10. &lt;a href="http://www.bubbl.us/" target="_blank"&gt;Bubbl.us&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/bubbl.us_.jpg"&gt;&lt;img alt="bubbl.us" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/bubbl.us_thumb.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Mind mapping is a fantastic way to sketch out ideas and do some  really productive brainstorming. Bubbl.us is a mind-mapping product  aimed towards exactly anyone who needs help organizing their thoughts or  any jumbled information. Powered by Flash, Bubbl.us makes it easy for  anyone to quickly start planning and sorting out their ideas through the  use of linked text bubbles.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;11. &lt;a href="http://www.imindmap.com/" target="_blank"&gt;iMindMap&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;&lt;a href="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/iMind.jpg"&gt;&lt;img alt="iMind" border="0" height="322" src="http://www.tripwiremagazine.com/wp-content/uploads/2011/06/iMind_thumb.jpg" style="border-width: 0px;" width="627" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;iMindMap takes a different approach to mapping than the other  applications in the list. Rather than create new nodes off the main idea  by adding boxes, nodes are created by clicking in the center or the  main idea and drawing away from it with the mouse. Each new idea is a  branch off the center. Strangely, many of basic feature available in  free mind-mapping software are only found in the more expensive versions  of iMindMap, like the ability to expand and collapse branches. Mind  maps created in iMindMap can be exported as PDF, JPG, PNG and text  outline.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-5538062064707730826?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/5538062064707730826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/06/useful-online-mind-mapping-and.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5538062064707730826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5538062064707730826'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/06/useful-online-mind-mapping-and.html' title='Useful online mind mapping and brainstorming tools'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-7755531967168170026</id><published>2011-06-11T23:12:00.000+07:00</published><updated>2011-06-11T23:12:26.839+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Creating a Blog Concept for New Bloggers</title><content type='html'>&lt;i&gt;This guest post is by Mariana Ashley&lt;/i&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="320" src="http://www.orble.com/abcimages/boy_computer.jpg" width="240" /&gt;&lt;/div&gt;&lt;br /&gt;One of the most difficult aspects of starting up a blog is creating a concept. Especially when creating a blog intended to collect ad revenue or your first official "serious" blog (as in, you want this blog to have thousands of subscribers and launch you into a blogging career), devising a foundation that will unify all your potential posts and ideas can become terrifyingly daunting. Any experienced or successful blogging guru will tell you that planning is critical in this phase of blogging. Fortunately, the variety of methods for planning and creating a blog is currently approaching infinity.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Stop and Ask Why&lt;/h3&gt;&lt;br /&gt;This is a crucial step that not enough bloggers do. In order to have a successful blog, you have to define and redefine the purpose of your blog. This may include some personal goals like "keep my writing skills up" or "have an online presence for my work." Remember that you should also ask why your blog will be read by others. What purpose will it serve for them? Will it serve a valuable niche topic? Will it provide good information that is otherwise hard to find? There are never too many why questions to ask before starting a project. The more you define why you are creating the blog and why it will be important to others, the more valuable and focused your blog will become in the end result.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Research&lt;/h3&gt;&lt;br /&gt;First and foremost, research research research! You should be reading any and every blog related to any idea you might want to blog about. If you don't have a feed reader, get one now! Seriously, if you want to consider yourself a blogger and don't want your life to become a nightmare of bookmarking and internet history searching, you need a reader like any aspiring author needs a bookshelf (or milk crates if they're on a budget). &lt;br /&gt;&lt;br /&gt;As a Google fan, I use Google Reader to aggregate my feeds, but I recently started using Feedly (which basically transforms Google Reader into a personalized magazine) to consume my feeds. Since many readers allow you to integrate, import, or export your feeds, you can easily experiment with various readers and see what works best for you. Remember to organize your feeds and create a folder for blogs that give you inspiration for your new concept.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Brainstorm&lt;/h3&gt;&lt;br /&gt;Believe it or not, brainstorming is an essential process of project planning that too few bloggers (and countless other professions for that matter) actually implement. With all the free (usually for at least some limited service) project planning software and web applications available, there's no excuse to forgo this planning step. Of course, Word or Notepad – or even a physical sheet of paper and a pen – are all you really need to brainstorm, but it can be fun to get fancy.&lt;br /&gt;&lt;br /&gt;Of course, it's a good idea to define any purpose and principles of your blog before jumping into brainstorming, but it's by no means a necessity. Just blindly brainstorming blog topics can become a huge benefit and give you ideas for your blog that you would never have thought about during research.&lt;br /&gt;&lt;br /&gt;&lt;div class="author" style="background: none repeat scroll 0% 0% rgb(248, 248, 248); border: medium none rgb(221, 221, 221); padding: 10px;"&gt;&lt;h4&gt;About Author&lt;/h4&gt;&lt;b&gt;Mariana Ashley&lt;/b&gt; is a freelance writer who particularly enjoys writing about &lt;a href="http://www.onlinecolleges.net/"&gt;online colleges&lt;/a&gt;. She loves receiving reader feedback, which can be directed to mariana.ashley031@gmail.com&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-7755531967168170026?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/7755531967168170026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/06/creating-blog-concept-for-new-bloggers.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7755531967168170026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7755531967168170026'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/06/creating-blog-concept-for-new-bloggers.html' title='Creating a Blog Concept for New Bloggers'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-3457874491623489011</id><published>2011-05-28T16:51:00.000+07:00</published><updated>2011-05-28T16:51:13.354+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Create a Bad word filter in Blogger comment</title><content type='html'>In your blog ,have you ever seen the bad word in comments ? Does it get annoyed other readers ? If the answer is yes ,you may need this one . I created a script for filtering bad word in comments .You just need to make a list of bad words ,and all the words in this list will be replaced with *&lt;br /&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-2NQP7ddnxfs/TeDBu6YWSdI/AAAAAAAAA_o/BG8nzUW9oVI/s1600/b.150.150.16777215.0.stories.badword_filter.png" /&gt;&lt;br /&gt;&lt;h3&gt;How we do that ?&lt;/h3&gt;1,Go to Blogger Dashboard -&amp;gt; Design -&amp;gt;Edit HTML .Checked on Expand wiget templates . Backup template before making any changes .&lt;br /&gt;&lt;br /&gt;2,Find &amp;lt;body&amp;gt; and add this code right before&lt;br /&gt;&lt;div style="color: lime;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/div&gt;&lt;div style="color: lime;"&gt;//&amp;lt;![CDATA[&lt;/div&gt;&lt;div style="color: lime;"&gt;function badwordfilter(ID){&lt;/div&gt;&lt;div style="color: lime;"&gt;var comm = document.getElementById(ID);&lt;/div&gt;&lt;div style="color: lime;"&gt;var comment = comm.innerHTML;&lt;/div&gt;&lt;div style="color: lime;"&gt;var reBadWords = /&lt;b&gt;badword1|badword2&lt;/b&gt;/gi;&lt;/div&gt;&lt;div style="color: lime;"&gt;comment1 = comment.replace(reBadWords, "****");&lt;/div&gt;&lt;div style="color: lime;"&gt;comm.innerHTML = comment1;&lt;/div&gt;&lt;div style="color: lime;"&gt;comm.style.display = "block"; &lt;/div&gt;&lt;div style="color: lime;"&gt;}&lt;/div&gt;&lt;div style="color: lime;"&gt;//]]&amp;gt;&lt;/div&gt;&lt;div style="color: lime;"&gt;&amp;lt;/script&amp;gt;&lt;/div&gt;&lt;br /&gt;please pay attention to the text in black bold above,it's the list of bad words .You can add more word to this list and separate each of them with a | ,like this &lt;br /&gt;&lt;b&gt;badword1|badword2|badword3|....|...&lt;/b&gt;&lt;br /&gt;do not remove&lt;b&gt; /&lt;/b&gt; at the start and &lt;b&gt;/gi&lt;/b&gt; at the end .&lt;br /&gt;&lt;br /&gt;3,Find and replace&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;p&amp;gt; &amp;nbsp; &amp;lt;data:comment.body/&amp;gt;&amp;lt;/p&amp;gt;&lt;/div&gt;&lt;br /&gt;with&lt;br /&gt;&lt;div style="color: lime;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="color: lime;"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div expr:id='data:comment.id' style='display:none;'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;data:comment.body/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;script type='text/javascript'&amp;gt;badwordfilter(&amp;amp;quot;&amp;lt;data:comment.id/&amp;gt;&amp;amp;quot;);&amp;lt;/script&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;That's all .Save template and see the changes&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-3457874491623489011?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/3457874491623489011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/05/create-bad-word-filter-in-blogger.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3457874491623489011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3457874491623489011'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/05/create-bad-word-filter-in-blogger.html' title='Create a Bad word filter in Blogger comment'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-2NQP7ddnxfs/TeDBu6YWSdI/AAAAAAAAA_o/BG8nzUW9oVI/s72-c/b.150.150.16777215.0.stories.badword_filter.png' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-7181220227001983323</id><published>2011-05-20T17:11:00.002+07:00</published><updated>2011-05-20T17:18:51.407+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>SimplexMag - a template for magazine or portfolio</title><content type='html'>This is my latest template ,I think it can be used for a blog ,or a portfolio ... &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="640" src="http://2.bp.blogspot.com/-1BPb4SFbfI8/TdYxos0R30I/AAAAAAAAA-g/qRMtK8PgiPM/s640/SimplexMag_1305882984472.png" width="329" /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://simplexmag.blogspot.com/"&gt;Live Demo&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?pylmrtr6kmkyfy6"&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;h3&gt;How to install this template&lt;/h3&gt;1,Download this template&lt;br /&gt;&lt;br /&gt;2,Open&amp;nbsp; template file in a word editor ( wordpad ,notepad,notepad ++ ... )&lt;br /&gt;&lt;br /&gt;3,To edit the main menu navigation&lt;br /&gt;&lt;img border="0" height="46" src="http://1.bp.blogspot.com/-GWojs3xoEg4/TdY7-cM4AqI/AAAAAAAAA-k/TdK8cor-o74/s400/menunav.png" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;Find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div class="menu-header"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul class="menu" id="menu-main-nav"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href="&lt;b&gt;/search/label/test&lt;/b&gt;"&amp;gt;&lt;b&gt;Test&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul class="sub-menu"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Sub Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Sub Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Sub Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Career&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Add link to your categories in this code like this one &lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;li&amp;gt;&amp;lt;a href="&lt;b&gt;link_to_category&lt;/b&gt;"&amp;gt;&lt;b&gt;Category name&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt; &lt;/span&gt;&lt;br /&gt;link to a category in blogger has structure &lt;br /&gt;&lt;div style="color: red;"&gt;http://your_blog.blogspot.com/search/label/category_name &lt;/div&gt;&lt;br /&gt;4,To set the number of post showed in pages :&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="65" src="http://3.bp.blogspot.com/-6MN0_y0YWFY/TdY8TxT24PI/AAAAAAAAA-o/S9Ww363P6hA/s400/numberofpost1.png" width="400" /&gt;&lt;/div&gt;&lt;br /&gt;This template use numbered pagination script ,so you have to set number of posts per page in pagination script&lt;br /&gt;Go to Blogger Dashboard -&amp;gt;Settings -&amp;gt;Formatting&lt;br /&gt;in the box &lt;b&gt;Show at most&lt;/b&gt; ....&lt;b&gt;on the main page&lt;/b&gt; you will see the number of post showed in the main page . For example ,in the picture bellow ,the number of post in main page is 6&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="92" src="http://2.bp.blogspot.com/-HYLRDkC9nHI/TdY8kzX2dUI/AAAAAAAAA-s/S4IMf8fzsMM/s400/numberofpost.png" width="400" /&gt;&lt;/div&gt;&lt;br /&gt;You can set another number .&lt;br /&gt;Now ,back to template file ,find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var pageNaviConf = {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;perPage: &lt;b&gt;2&lt;/b&gt;,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;numPages: 2,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;firstText: "First",&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;lastText: "Last",&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;nextText: "Next",&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;prevText: "Prev"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And change the value of perPage variable from 2 to the number we set at &lt;b&gt;Show at most ...on the main page&lt;/b&gt; box .If we set the number of post in main page in Show at most ... on the main page 6 ,change the value of perPage from 2 to 6 .&lt;br /&gt;Why we need this step ? To make sure the number of post per page exactly as we set . If you skip this step ,number of post on homepage is the number we set at &lt;b&gt;Show at most ...&lt;/b&gt; box ,but click on the next page ,the number of post is only 2 (the value we set in perPage ) .&lt;br /&gt;&lt;br /&gt;5,To add your social network accounts&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="95" src="http://1.bp.blogspot.com/-GsZtFE79SBk/TdY_7cpY_xI/AAAAAAAAA_U/Ih_mvdxffYw/s320/socialnetwork.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;find this code&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div class="social_media"&amp;gt; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;script src="http://s7.addthis.com/js/250/addthis_widget.js#username=xa-4c873bb26489d97f" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a class="addthis_button_compact sharethis i_share at300m" href="http://www.addthis.com/bookmark.php?v=250&amp;amp;amp;username=xa-4c873bb26489d97f"&amp;gt;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="at300bs at15nc at15t_compact"&amp;gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/a&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a class="i_rss" href="&lt;b&gt;http://feeds.feedburner.com/Simplex&lt;/b&gt;"&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a class="i_twitter" href="&lt;b&gt;http://twitter.com/dinhquanghuy&lt;/b&gt;"&amp;gt;&amp;lt;/a&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a class="i_facebook" href="&lt;b&gt;http://www.facebook.com/simplexdesignblog&lt;/b&gt;"&amp;gt;&amp;lt;/a&amp;gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a class="i_flicker" href="#"&amp;gt;&amp;lt;/a&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a class="top_btn" href="#"&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and change link to your social network accounts&lt;br /&gt;&lt;br /&gt;6,Upload template to Blogger .Then go to Dashboard -&amp;gt; Design -&amp;gt;Page Elements&lt;br /&gt;&lt;br /&gt;7,To add logo&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="109" src="http://4.bp.blogspot.com/-Jqqc5IxtY-g/TdY8vzG8YDI/AAAAAAAAA-4/atyBY-0OeoU/s320/header+widget.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;Click on edit link in header widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="80" src="http://3.bp.blogspot.com/-PkOERxmY96U/TdY8u9E2qzI/AAAAAAAAA-w/6loGMdP3AXo/s320/header+widget1.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;In this widget , you can upload your logo image ,use text ... &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="320" src="http://4.bp.blogspot.com/-290_K8boENs/TdY8vWOjEwI/AAAAAAAAA-0/gpd3HRJ6pzA/s320/header+widget2.png" width="284" /&gt;&lt;/div&gt;&lt;br /&gt;8,To add the top ads&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="74" src="http://3.bp.blogspot.com/-e3kAmajCuBk/TdY87N_tW_I/AAAAAAAAA-8/0NwtRPqDdIk/s320/topads1.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;Click on edit link in Topads widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="66" src="http://2.bp.blogspot.com/-ftDmh_68ZoQ/TdY88E2pdTI/AAAAAAAAA_E/pVxPECJc4mQ/s320/topads.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;Add the ad code to widget content&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="285" src="http://3.bp.blogspot.com/-KVNPKqf_8D8/TdY87jhqKaI/AAAAAAAAA_A/MqrAqUUw3GA/s320/topads2.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;Do the same for Advertise widget in sidebar .&lt;br /&gt;&lt;br /&gt;9,There are two widgets "latest resource" at the footer ,you can set these widget to show latest posts in a specific category .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-xigN5GiWMo0/TdY9HNUY6dI/AAAAAAAAA_Q/YAUdSEy8exg/s1600/latest+resource.png" /&gt;&lt;/div&gt;&lt;br /&gt;Click on edit link in Latest resource widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-aEWUkjPxR2I/TdY9GDXwgUI/AAAAAAAAA_I/vOlhKDXji5o/s1600/latest+resource1.png" /&gt;&lt;/div&gt;&lt;br /&gt;Add the title in Widget title ,and add the name of category which you want to show posts in widget content .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img border="0" height="276" src="http://1.bp.blogspot.com/-siyB5VCv4A0/TdY9GhovUCI/AAAAAAAAA_M/XFCyUyXHFFY/s320/latest+resource2.png" width="320" /&gt;&lt;/div&gt;&lt;br /&gt;10,You can add your own widget in sidebar ,or in footer .&lt;br /&gt;&lt;br /&gt;11,Save changes .&lt;br /&gt;&lt;br /&gt;That's all for this template . I think it's very easy to install and use . Hope it helpful to you ,and feel free to give me feedbacks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-7181220227001983323?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/7181220227001983323/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/05/simplexmag-new-magazineportfolio.html#comment-form' title='18 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7181220227001983323'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7181220227001983323'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/05/simplexmag-new-magazineportfolio.html' title='SimplexMag - a template for magazine or portfolio'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-1BPb4SFbfI8/TdYxos0R30I/AAAAAAAAA-g/qRMtK8PgiPM/s72-c/SimplexMag_1305882984472.png' height='72' width='72'/><thr:total>18</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-2031223204166954327</id><published>2011-05-07T17:04:00.000+07:00</published><updated>2011-05-07T17:04:51.676+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>Simplex Eshop - Blogger template for shopping cart/ecommerce</title><content type='html'>Some of you asked me for Ecommerce /shopping cart in Blogger platform . My result is template SimplexEshop .This is a test template and need more time to finish because every shop has its own options in shipping/tax rate/price/promotion&amp;nbsp; ,and fill all needs with only Javascript is an impossible mission . But I want to show it here to get your feedback and hope I can make it better .&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-Ky0czyTU74o/TcUUTx6lPVI/AAAAAAAAA-A/cap3WrHBrbI/s1600/simplexeshop_1304761353486.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="640" src="http://2.bp.blogspot.com/-Ky0czyTU74o/TcUUTx6lPVI/AAAAAAAAA-A/cap3WrHBrbI/s640/simplexeshop_1304761353486.png" width="508" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://simplexeshop.blogspot.com/"&gt;Live Demo&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?499ou12ftjq7972"&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;h3&gt;How to install this template&lt;/h3&gt;1,Download the template file .&lt;br /&gt;&lt;br /&gt;2,Open template file in a word editor .&lt;br /&gt;&lt;br /&gt;3, To make a menu navigation&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-WdvGjFD7LHs/TcUVnm_MbmI/AAAAAAAAA-E/gzW1XAN4CUc/s1600/menu.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-WdvGjFD7LHs/TcUVnm_MbmI/AAAAAAAAA-E/gzW1XAN4CUc/s1600/menu.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;ul id="nav"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href="&lt;b&gt;http://simplexeshop.blogspot.com&lt;/b&gt;"&amp;gt;&lt;b&gt;Home&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href="&lt;b&gt;http://simplexeshop.blogspot.com/search/label/shop&lt;/b&gt;"&amp;gt;&lt;b&gt;Store&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul class="children"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href="&lt;b&gt;http://simplexeshop.blogspot.com/search/label/blog&lt;/b&gt;"&amp;gt;&lt;b&gt;Blog&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt; &lt;br /&gt;Add link to your categories like my other template . You can see on Simplex Enews or Simplex Transcript for more about this multi-level menu .&lt;br /&gt;&lt;br /&gt;4,&lt;b&gt;Basic Shop Setting&lt;/b&gt; &lt;br /&gt;This template was built based on &lt;b&gt;SimpleCart solution&lt;/b&gt; (&lt;a href="http://simplecartjs.com/"&gt;Simplecartjs.com&lt;/a&gt; ) , what I did only integrated Simplecart to a blogger template . So all options /setting for shop ,you can see in &lt;a href="http://simplecartjs.com/documentation.html"&gt;simplecart documentation&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;a,Payment method&amp;nbsp;&lt;/b&gt;&lt;br /&gt;This Template support two payment methods : Paypal and Google Checkout . Default is Paypal ,and it was set in these line :&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;simpleCart.email = "brett@wojodesign.com";&lt;/div&gt;&lt;div style="color: red;"&gt;simpleCart.checkoutTo = PayPal;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;If you want to use Paypal ,you can replace &lt;b&gt;brett@wojodesign.com&lt;/b&gt; to your paypal email .&lt;br /&gt;If you want to use Google Checkout ,you can replace two lines above with&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;simpleCart.merchantId = "111111111111111";&lt;/div&gt;&lt;div style="color: red;"&gt;simpleCart.checkoutTo = GoogleCheckout;&lt;/div&gt;&lt;br /&gt;Change &lt;b&gt;111111111111111&lt;/b&gt; to your Google Checkout merchant ID .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;b,Currency&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;This template support GBP,USD ,and EUR . Default is USD and it was set in this line&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;simpleCart.currency = USD;&lt;/div&gt;&lt;br /&gt;if you want to change the currency ,you can change USD in the line above (marked in bold) to GBP or EUR .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;c,Tax rate&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The default tax rate was set in this line&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;simpleCart.taxRate&amp;nbsp; = 0.08;&lt;/div&gt;&lt;br /&gt;You can change the value from 0.08 to another rate . If you don't want to add the tax rate ,you can delete this line &lt;br /&gt;&lt;br /&gt;&lt;b&gt;d,Shipping&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;There are many ways to calculating the shipping cost for an order :&lt;br /&gt;&lt;u&gt;-Add a flat rate to the entire order &lt;/u&gt;.This is the default method in template and it was set in this line&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;simpleCart.shippingFlatRate = 5.25;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;(an amount 5.25 shipping cost will be added to the entire order )&lt;br /&gt;You can change 5.25 to the value you want .&lt;br /&gt;&lt;br /&gt;&lt;u&gt;-Add a shipping cost to every item in the cart &lt;/u&gt;: if you want to use this method ,you can delete &lt;span style="color: red;"&gt;simpleCart.shippingFlatRate = 5.25;&lt;/span&gt;&lt;br /&gt;and use this line&lt;br /&gt;&lt;div style="color: red;"&gt;simpleCart.shippingQuantityRate = 3.00;&lt;/div&gt;This line will add an amount 3.00 to every item in the cart .Of course ,you can change 3.00 to other value .&lt;br /&gt;&lt;br /&gt;&lt;u&gt;-Add a shipping cost as percentage of total cost :&lt;/u&gt; to use this method ,you can delete the default &lt;span style="color: red;"&gt;simpleCart.shippingFlatRate = 5.25;&lt;/span&gt;&lt;br /&gt;and use this :&lt;br /&gt;&lt;div style="color: red;"&gt;simpleCart.shippingTotalRate = 0.05;&lt;/div&gt;&lt;br /&gt;This line will add a shipping cost as 5% to the total cost .You can change this rate to another value .&lt;br /&gt;&lt;br /&gt;If you require some advanced calculations for shipping, you can delete the default line and use the prototype object for CartItems:&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;CartItem.prototype.shipping=function(){&lt;/div&gt;&lt;div style="color: red;"&gt;// we are using a 'size' field to calculate the shipping,&lt;/div&gt;&lt;div style="color: red;"&gt;// so we first make sure the item has a size&lt;/div&gt;&lt;div style="color: red;"&gt;if(this.size){&lt;/div&gt;&lt;div style="color: red;"&gt;if( this.size == 'small' ){&lt;/div&gt;&lt;div style="color: red;"&gt;return this.quantity*5.00;&lt;/div&gt;&lt;div style="color: red;"&gt;} else if( this.size == 'large') {&lt;/div&gt;&lt;div style="color: red;"&gt;return this.quantity*7.50;&lt;/div&gt;&lt;div style="color: red;"&gt;} else {&lt;/div&gt;&lt;div style="color: red;"&gt;return this.quantity*10.00;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;} else {&lt;/div&gt;&lt;div style="color: red;"&gt;// use a default of $2.00 per item if there is no 'size' field&lt;/div&gt;&lt;div style="color: red;"&gt;return this.quantity*2.00;&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;div style="color: red;"&gt;}&lt;/div&gt;&lt;br /&gt;The 'this' here refers to the item, and we are using a 'size' field and the item 'quantity' to calculate the shipping. Because an item may or may not have a size, we check to make sure it does with the 'if(this.size)'. If there is a size field, we use a different rate for each size and return a value based on the item quantity. Otherwise, we use a base rate of 2.00. simpleCart(js) will use the global shipping rates, and then add the shipping value for each item in the cart.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5,When you finish editing ,upload template to Blogger . Go to Dashboard -&amp;gt;Design -&amp;gt;Page elements&lt;br /&gt;&lt;br /&gt;6,To add logo&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-pVtXhA6rf_0/TcUXge--9uI/AAAAAAAAA-I/-2ojoWWKx9c/s1600/logo.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="123" src="http://4.bp.blogspot.com/-pVtXhA6rf_0/TcUXge--9uI/AAAAAAAAA-I/-2ojoWWKx9c/s320/logo.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on logo widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-cf21f2IDAAQ/TcUX1dI1wgI/AAAAAAAAA-Q/8HIqQjEamKU/s1600/logo1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-GAGnaSFOv7o/TcUXsjqa62I/AAAAAAAAA-M/lhzSZB6G57A/s1600/logo%2560.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-GAGnaSFOv7o/TcUXsjqa62I/AAAAAAAAA-M/lhzSZB6G57A/s1600/logo%2560.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add logo as this image bellow&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/-cf21f2IDAAQ/TcUX1dI1wgI/AAAAAAAAA-Q/8HIqQjEamKU/s1600/logo1.png" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="351" src="http://1.bp.blogspot.com/-cf21f2IDAAQ/TcUX1dI1wgI/AAAAAAAAA-Q/8HIqQjEamKU/s400/logo1.png" width="400" /&gt;&lt;/a&gt;&lt;br /&gt;7,There are many places that you can add your own widget . For example ,you can add link list widget for making category menu ,subscription widget ,page list widget ...&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-NppwdbUkTlo/TcUYMCh7YpI/AAAAAAAAA-U/XzdCADg97lY/s1600/widget.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="182" src="http://2.bp.blogspot.com/-NppwdbUkTlo/TcUYMCh7YpI/AAAAAAAAA-U/XzdCADg97lY/s320/widget.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;8,That's all for install this template .&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;How to use this template&lt;/h3&gt;It's a little bit difficult when using this template .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;To post product to shop&lt;/b&gt; : Go to Dashboard -&amp;gt; Posting -&amp;gt; New Post .Click on Edit HTML and made a post with this structure&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div id="description"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;PRODUCT INFORMATION..........&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;........................&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div class="simpleCart_shelfItem"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;span class="item_name"&amp;gt;item name ...&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;Price : &amp;lt;span class="item_price"&amp;gt;price .........&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;Quatity : &amp;lt;input class="item_quantity" type="text" value="1" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;a href="javascript:;" class="item_add" title="Add to Cart"&amp;gt;Add to Cart&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In structure above , this is the product information section :&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div id="description"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;   &lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;   &lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;   &lt;br style="color: lime;" /&gt;   &lt;span style="color: lime;"&gt;PRODUCT INFORMATION GOES HERE..........&lt;/span&gt;&lt;br style="color: lime;" /&gt;   &lt;span style="color: lime;"&gt;........................&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;you can add image by using &lt;b&gt;&lt;span style="color: lime;"&gt;&amp;lt;img src="image url goes here"&amp;gt;&lt;/span&gt;&lt;/b&gt; and add product description bellow (in the text product information goes here )&lt;br /&gt;After the product information section ,we move to &lt;b&gt;add to cart&lt;/b&gt; section :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div class="simpleCart_shelfItem"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;span class="item_name"&amp;gt;&lt;b&gt;item name ...&lt;/b&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;Price : &amp;lt;span class="item_price"&amp;gt;&lt;b&gt;price .........&lt;/b&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;Quatity : &amp;lt;input class="item_quantity" type="text" value="&lt;b&gt;1&lt;/b&gt;" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;a href="javascript:;" class="item_add" title="Add to Cart"&amp;gt;Add to Cart&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;lt;/div&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;in this section ,add the item name in where I marked &lt;b&gt;item name ....&lt;/b&gt; ,add the price in where I marked &lt;b&gt;price ...&lt;/b&gt; and change the quatity from &lt;b&gt;'1'&lt;/b&gt; to another value .&lt;br /&gt;&lt;br /&gt;If you want to set a special shipping cost for this item only ,you can add this line to the &lt;b&gt;add to cart&lt;/b&gt; section&lt;br /&gt;&lt;span style="color: lime;"&gt; &amp;lt;input class="item_shipping" value="xxx" type="hidden"&amp;gt;&lt;/span&gt;&lt;br /&gt;replace xxx to the shipping cost of this item&lt;br /&gt;and the code of Add to cart section will become :&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div class="simpleCart_shelfItem"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;span class="item_name"&amp;gt;&lt;b&gt;item name ...&lt;/b&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;Price : &amp;lt;span class="item_price"&amp;gt;&lt;b&gt;price .........&lt;/b&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;Quatity : &amp;lt;input class="item_quantity" type="text" value="&lt;b&gt;1&lt;/b&gt;" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt; &amp;lt;input class="item_shipping" value="xxx" type="hidden"&amp;gt;&lt;/span&gt;&lt;span style="color: lime;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;a href="javascript:;" class="item_add" title="Add to Cart"&amp;gt;Add to Cart&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;lt;/div&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;When you set shipping cost for an item ,the method which used to calculate shipping fee in step 4 will be overide .&lt;br /&gt;&lt;br /&gt;After finish editing the post with structure above ,add a label 'shop' at the end of post ,and the product will be added to shop with sliders ,price and add to cart function&lt;br /&gt;&lt;br /&gt;&lt;b&gt;To post to Blog &lt;/b&gt;: to post to blog ,you can make a normal post ,and add a label 'blog' at the end of post .&lt;br /&gt;&lt;br /&gt;It's similar to my older template Simplex Portfolio ,in Simplex Portfolio ,we have two display mode : display a post as a post in gallery ,and display a post as a normal blog post .In this template ,we also have two display mode : display a post as product in shop and display a post as a normal blog post .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;For the page&lt;/b&gt; : you can make pages as normal .&lt;br /&gt;&lt;br /&gt;That's all for this template . I think it is not easy to use and handle .If you familliar with the code ,you can take a try ^^ For detail shopping cart settings ,you can see more in &lt;a href="http://simplecartjs.com/"&gt;&lt;b&gt;simplecartjs&lt;/b&gt;&lt;/a&gt;&amp;nbsp; &lt;br /&gt;Feel free to leave me feedbacks&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-2031223204166954327?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/2031223204166954327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/05/simplex-eshop-blogger-template-for.html#comment-form' title='106 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2031223204166954327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2031223204166954327'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/05/simplex-eshop-blogger-template-for.html' title='Simplex Eshop - Blogger template for shopping cart/ecommerce'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-Ky0czyTU74o/TcUUTx6lPVI/AAAAAAAAA-A/cap3WrHBrbI/s72-c/simplexeshop_1304761353486.png' height='72' width='72'/><thr:total>106</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-1074338755466697331</id><published>2011-04-25T18:35:00.000+07:00</published><updated>2011-04-25T18:35:37.604+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Tips for Finding the Perfect Blogger Template</title><content type='html'>&lt;i&gt;Some of readers mailed to me ask for which template should they use for blog? or ask me the template they are using good or not ? In fact ,choosing a template is up to the blog owner ,not me ^^ Angela Quint from Ultrasound has some advice for you in this case .This is a guest post from Angela Quint&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img border="0" height="219" src="http://3.bp.blogspot.com/-gGSUVBx8lrM/TbVbkPkD_WI/AAAAAAAAA98/-oEr1_qu9pQ/s320/choosing_the_best.jpg" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;Did you know there are more than 10 million blogs online today?  If you’re a beginning blogger, there are probably almost that many questions going through your head.  One of the first questions you probably have is how to choose the right blogging template.  There are thousands of templates available, including ones that are free and ones for which you pay.  It’s a crucial decision, so here are a few tips that will help you pick the perfect template for your blog.&lt;br /&gt;&lt;h3&gt;1,To Pay or Not to Pay?&lt;/h3&gt;&lt;p&gt;Should you pay for your template?  That depends on two things: how serious are you about your blog and how much computer experience do you have?  If your blog is a business venture, you need it to look as professional as possible, especially if you want to monetize the site. Some premium templates are ad placement ready, which makes formatting easy. &lt;br /&gt;Another big advantage of purchasing a template is that you normally get better support.  If problems arise, you’ll have help at the ready and you won’t have to be a techie to keep the site functioning properly.  &lt;br /&gt;If you decide to buy a template, think of it as in investment in the future wellbeing of your blog.&lt;/p&gt;&lt;h3&gt;2,Start with 2 Columns&lt;/h3&gt;&lt;p&gt;Although there are many one and three column templates available, most bloggers agree that a two-column format is easiest to manage.  One column is too simplistic and three columns gets complicated.  Two columns allows you to keep the site clean but functional, with the current post on one side and the search, ads, and other elements on the other.&lt;/p&gt;&lt;h3&gt;3,Make it Relevant to Your Niche&lt;/h3&gt;&lt;p&gt;You have a few seconds to capture your reader’s interest. That’s why the header you use is vital.  Think about the focus of your blog and the people you want to read it.  Make the graphic in the heading relate to the topic.  You might love kittens, but if your blog is about golf, that adorable kitty graphic isn’t relevant.  If your reader loves golf but isn’t in to cats, you’ve lost him as soon as he clicks on the page.  &lt;br /&gt;After you have more experience, you may learn to change the heading picture, but when you’re just starting out, it’s wisest to pick a template with a relevant graphic.&lt;/p&gt;&lt;h3&gt;4,Functionality is Key&lt;/h3&gt;&lt;p&gt;Do you want your readers to be able to leave comments?  Do you want to add pictures to each post?  Is there a search function?  You need to narrow down what features your blog needs and then eliminate templates that don’t offer those elements.  Make sure you test each of the features and check for broken links.  Your blog needs to flow smoothly from page to page to keep readers happy.&lt;br /&gt;Most importantly, know what the purpose of your blog is.  By keying in on your goals, you’ll be better prepared to select the perfect template for your blog.  &lt;p&gt;&lt;div class="author" style="background: none repeat scroll 0% 0% rgb(248, 248, 248); border: medium none rgb(221, 221, 221); padding: 10px;"&gt;&lt;h4&gt;About Author&lt;/h4&gt;&lt;b&gt;Angela Quint&lt;/b&gt; is an &lt;a href="http://www.ultrasound-technician.net"&gt;ultrasound technician&lt;/a&gt; by day and a blogger by night. She enjoys writing to share her love of health and wellness with others!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-1074338755466697331?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/1074338755466697331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/04/tips-for-finding-perfect-blogger.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1074338755466697331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1074338755466697331'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/04/tips-for-finding-perfect-blogger.html' title='Tips for Finding the Perfect Blogger Template'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-gGSUVBx8lrM/TbVbkPkD_WI/AAAAAAAAA98/-oEr1_qu9pQ/s72-c/choosing_the_best.jpg' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-4751383113842915629</id><published>2011-04-14T17:06:00.002+07:00</published><updated>2011-04-14T17:12:30.994+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Make credit box for each author in a multi-author blog</title><content type='html'>You have a blog with many authors who contribute content ,and you want to show their short bio in credit box at the end of each post . This idea was in Wordpress for a long time ,but not in Blogger . I tried several times ,but none of them work . Thanks to comment of &lt;b&gt;ابن الملكـة&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;He gave me a code that work in a comment ,and now I want to share this code here .Both of me and ابن الملكـة hope this code helpful to you all ,and make Blogger to be the best of blogging platform .&lt;br /&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-3BJMQfuOcyo/TabGBVJ_sqI/AAAAAAAAA9o/o9h8_AD1g7Y/s1600/multiple-authors-blog.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;&amp;nbsp;Here is what we need to do :&lt;/h3&gt;1,First ,you find this line &lt;span style="color: red;"&gt;&amp;lt;data:post.body/&amp;gt; &lt;/span&gt;&lt;br /&gt;and then paste the following code right after the line above.&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div style='clear:both'/&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;div id='creditbox'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;!-- Author Bio info start--&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;b:if cond='data:blog.pageType == "item"'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp; &amp;lt;!-- First Author Info --&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;b:if cond='data:post.author == "NAME OF FIRST AUTHOR"'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class='authoravatar' height='39' src='IMAGE URL FOR FIRST AUTHOR' width='39'/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;div class='postauthor'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;h3&amp;gt;&amp;lt;a href='FIRST AUTHOR'S URL'&amp;gt;NAME OF FIRST AUTHOR &amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt; NOTES ABOUT FIRST AUTHOR &amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;div style='clear:both'/&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;!-- Second Author Info --&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;b:if cond='data:post.author == "NAME OF SECOND  AUTHOR"'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class='authoravatar' height='39' src='IMAGE  URL FOR SECOND AUTHOR' width='39'/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;div class='postauthor'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;h3&amp;gt;&amp;lt;a href='SECOND AUTHOR'S  URL'&amp;gt;NAME OF SECOND AUTHOR &amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt; NOTES ABOUT SECOND AUTHOR &amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;div style='clear:both'/&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;....................... &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;!-- Author Bio info End--&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div style='clear:both'/&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;Notes&lt;/b&gt; :&lt;/i&gt;&lt;br /&gt;&lt;i&gt;1- NAME OF FIRST AUTHOR : replace this with name of your first author . Name of author must be as exact as name showed in profile .&lt;/i&gt;&lt;br /&gt;&lt;i&gt;2- NAME OF second AUTHOR :replace this with name of your second author&lt;/i&gt;&lt;br /&gt;&lt;i&gt;3- IMAGE URL FOR FIRST AUTHOR :Replace this with the link to your first author avatar or image .&lt;/i&gt;&lt;br /&gt;&lt;i&gt;4- IMAGE URL FOR second AUTHOR :Replace this with the link to your first author avatar or image.&lt;/i&gt;&lt;br /&gt;&lt;i&gt;5- NOTES ABOUT FIRST AUTHOR : Replace this with author short bio ,profile ...&lt;/i&gt;&lt;br /&gt;&lt;i&gt;6- NOTES ABOUT second AUTHOR :  Replace this with author short bio ,profile ...&lt;/i&gt;&lt;br /&gt;&lt;i&gt;7- FIRST AUTHOR'S URL :Replace this with link to author profile page or link to a social network account.&lt;/i&gt;&lt;br /&gt;&lt;i&gt;8- SECOND AUTHOR'S URL :Replace this with link to author profile page or link to a social network account.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;In case of there are more than one &lt;span style="color: red;"&gt;&amp;lt;data:post.body/&amp;gt;&lt;/span&gt;&amp;nbsp;in the search result ,you can paste this code right after all the results&amp;nbsp; .&lt;br /&gt;If you have more than two authors ,you can duplicate the code of first author's information or second author's information and then change the name,link,bio...&lt;br /&gt;&lt;br /&gt;2,Add this CSS code before &lt;span style="color: red;"&gt;&amp;lt;body&amp;gt;&lt;/span&gt; to decorate the credit box :&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;#creditbox {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; background: none repeat scroll 0 0 #EDEDED;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 10px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; margin-top:10px;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; .authoravatar {float:left;margin-right:10px;padding:4px;background:#fff;border:1px solid #f0f0f0;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; .postauthor {float:left;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This is an example .You can add more CSS tags to make the credit box display as you want .&lt;br /&gt;&amp;nbsp;Here is my credit box in Simplex Celebrity template&lt;br /&gt;&lt;br /&gt;&lt;img border="0" height="117" src="http://3.bp.blogspot.com/-nnnWkC_L_qg/TabHG21sVzI/AAAAAAAAA9s/gjgJOvy-eGw/s320/creditbox.png" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;That's all for making credit box in a multi-author blog .Thanks &lt;b&gt;ابن الملكـة&lt;/b&gt; again for this helpful tip .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-4751383113842915629?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/4751383113842915629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/04/credit-box-for-multi-author-blog.html#comment-form' title='14 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4751383113842915629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4751383113842915629'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/04/credit-box-for-multi-author-blog.html' title='Make credit box for each author in a multi-author blog'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-3BJMQfuOcyo/TabGBVJ_sqI/AAAAAAAAA9o/o9h8_AD1g7Y/s72-c/multiple-authors-blog.png' height='72' width='72'/><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-5430873778182296960</id><published>2011-04-08T02:09:00.001+07:00</published><updated>2011-04-08T02:20:06.575+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Beyond Design: 5 Tips for Making Your Blog More Reader-Friendly</title><content type='html'>&lt;img border="0" height="319" src="http://3.bp.blogspot.com/-79GmpLRzNxI/TZ4ORZuvUnI/AAAAAAAAA9I/N45Xv2WL8JQ/s320/writingguy.jpg" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;This guest post was written by Alvina Lopez of &lt;a href="http://www.accreditedonlinecolleges.com/"&gt;accredited online colleges&lt;/a&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;For those of you bloggers who are knowledgeable about the ins and outs of website design, you definitely have a leg up in the blogosphere, as most bloggers aren't completely aware how much a blog's layout and color scheme affects a reader's attention. At the same time, however, there are a few other considerations that design-centric bloggers might want to keep in mind, especially in terms of writing. Here are just a few: &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;1. The title is more important than you think. &lt;/h3&gt;Titles are something that some bloggers put more emphasis on than others. But we could all do with placing a particular importance on making each title something special. It is, after all the first thing our readers lay their eyes on. When thinking of titles, consider your own browsing history. When you read the news online, which articles do you tend to click on? How are their respective titles worded? Checking articles that top the most popular lists is also a good way to improve your blog titles. &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;2. Paragraphs and blog posts that are too long turn off lots of net readers. &lt;/h3&gt;Paragraphs and articles that are too short make you look lazy.&lt;br /&gt;Obviously, most bloggers know that writing paragraphs that are too long can tire readers out. Remember, the &lt;a href="http://www.theatlantic.com/magazine/archive/2008/07/is-google-making-us-stupid/6868"&gt;Internet is a veritable breeding ground for ADHD&lt;/a&gt;. At the same time, however, articles or paragraphs that are super short make your material look skimpy. Find a happy medium, and remember that most Internet readers especially like list posts.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;3. Justified paragraphs are pleasing to the eye. &lt;/h3&gt;Some may disagree with me on this one, but having justified paragraphs like they do in newspapers is an aesthetic consideration that makes things easier to read. You can do this by hitting the "justify" button on Word if you do take write your first drafts on a word processor. It gives your blog articles a cleaner appearance. Off-setting quoted material in a different-colored box works well, too. &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;4. The placement of good hyperlinks is absolutely instrumental in drawing and keeping a reader's attention. &lt;/h3&gt;Hyperlinks that link out to related material are one of the hallmarks of good blog posts and Internet writing in general. But be careful. Placing too many hyperlinks can overwhelm your readers, and placing too few makes your blog post come off as not very authoritative and lacking supporting sources. Be sure to include links to quality material (i.e. stay away from content farm type stuff).&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;5. Cycling between the pyramid and inverted pyramid, depending on circumstances, keeps things fun and unpredictable. &lt;/h3&gt;Traditional journalists hew to the &lt;a href="http://www.dailywritingtips.com/the-inverted-pyramid/"&gt;inverted pyramid&lt;/a&gt; when it comes to structuring their articles. That is, they place all the most relevant and important information in the first paragraph, and put unnecessary details further down the article. While this is a good practice for news stories, with blog posts you can shake things up a bit. By doing a right-side up pyramid, in which you tease readers with the more important info toward the bottom, you can effectively get your audience to read with bated breath till the very end. Be careful with this style, however, because it can easily turn into an exercise in boredom. Be sure to make each paragraph interesting and suspenseful in its own right. &lt;br /&gt;&lt;br /&gt;&lt;div class="author" style="background: none repeat scroll 0% 0% rgb(248, 248, 248); border: medium none rgb(221, 221, 221); padding: 10px;"&gt;&lt;h4&gt;About Author&lt;/h4&gt;&lt;b&gt; Alvina Lopez&lt;/b&gt; is a freelance writer and blog junkie, who blogs about &lt;a href="http://www.accreditedonlinecolleges.com/"&gt;accredited online colleges&lt;/a&gt;.  She welcomes your comments at her email Id: alvina.lopez @gmail.com. &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-5430873778182296960?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/5430873778182296960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/04/beyond-design-5-tips-for-making-your.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5430873778182296960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/5430873778182296960'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/04/beyond-design-5-tips-for-making-your.html' title='Beyond Design: 5 Tips for Making Your Blog More Reader-Friendly'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-79GmpLRzNxI/TZ4ORZuvUnI/AAAAAAAAA9I/N45Xv2WL8JQ/s72-c/writingguy.jpg' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-8605670486982178274</id><published>2011-04-01T16:02:00.000+07:00</published><updated>2011-04-01T16:02:08.035+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Blogger offer five dynamic views for readers</title><content type='html'>Blogger has offered five dynamic views for readers . Now ,we can browse a blog with not only normal blog design ,but also in five different views .With the latest in web technology, including AJAX, HTML5  and CSS3 ,in these views we can :&lt;br /&gt;-Read more posts without having to reload or click to a second page . &lt;br /&gt;-Read posts in different layout (flipcard,sidebar,mosaic,snapshot and timeslide )&lt;br /&gt;-Browse a page faster because images only load when we view ,not all at once .&lt;br /&gt;......&lt;br /&gt;When seeing my blog in these views ,I have to say "Oh,that's so cool"&amp;nbsp; . &lt;br /&gt;&lt;img border="0" height="225" src="http://3.bp.blogspot.com/-mEBD9mQLeJ8/TZWTT8KL-LI/AAAAAAAAA84/sfmsQWkIFQc/s400/SimplexDesign+-+free+premium+blogspot+template_1301647299733.png" width="400" /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://simplexdesign.blogspot.com/view"&gt;See SimplexDesign blog in different views here&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;To enable different views to blog:&lt;br /&gt;&lt;div class="article_content" id="article-content-div"&gt;-Your blog is public. Your readers don’t need to sign in to view your blog.&lt;br /&gt;-Your blog has feeds fully enabled. In the &lt;b&gt;Settings | Site feed&lt;/b&gt; tab, you have enabled either &lt;i&gt;Full&lt;/i&gt; or &lt;i&gt;Jump Break&lt;/i&gt; for your Post Feed.&lt;br /&gt;-You have not disabled dynamic views. In the &lt;b&gt;Setting | Formatting&lt;/b&gt; tab, the option for &lt;i&gt;Enable Dynamic Views&lt;/i&gt; is set to Yes.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;To see a blog in different views , simply add a&amp;nbsp; &lt;i style="color: lime;"&gt;/view&lt;/i&gt; at the end of blog url . For example ,to see SimplexDesign blog in additional views ,you can go to this address : &lt;b&gt;&lt;a href="http://simplexdesign.blogspot.com/view"&gt;http://simplexdesign.blogspot.com/view&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;In all views, search is available in the upper right hand corner.  Clicking on the "&amp;gt;" arrow in the very top left of the header bar will  slide the header bar across and allow you to choose different views for  the current blog as well as type in a new blog URL.&lt;br /&gt;&lt;br /&gt;An important thing that these views require modern browsers such as Internet Explorer 8+,  Firefox 3.5+, Chrome or Safari. Many elements of these views will not  work if you have an older browser.&lt;br /&gt;&lt;br /&gt;Please note that these views do not currently support many of the  features your original blog may have, including displaying  advertisements. Blogger team said that they will let user  personalize these views, including providing an option to set a  particular view as the default and displaying advertisements over the coming months.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here is SimplexDesign blog in new views&lt;/h3&gt;&lt;b&gt;Sidebar view&lt;/b&gt;&lt;br /&gt;&lt;img border="0" height="225" src="http://3.bp.blogspot.com/-mEBD9mQLeJ8/TZWTT8KL-LI/AAAAAAAAA84/sfmsQWkIFQc/s400/SimplexDesign+-+free+premium+blogspot+template_1301647299733.png" width="400" /&gt;&lt;br /&gt;&lt;b&gt;Flipcard view&lt;/b&gt;&lt;br /&gt;&lt;img border="0" height="225" src="http://3.bp.blogspot.com/-rvdroQXgzzo/TZWTVM-UQqI/AAAAAAAAA88/4mLxn44MDig/s400/SimplexDesign+-+free+premium+blogspot+template_1301648033705.png" width="400" /&gt;&lt;br /&gt;&lt;b&gt;Timeslide view&lt;/b&gt;&lt;br /&gt;&lt;img border="0" height="225" src="http://4.bp.blogspot.com/-UEL4z-Qwd4k/TZWTSlmauSI/AAAAAAAAA80/01Ra5qFCtvQ/s400/SimplexDesign+-+free+premium+blogspot+template_1301648170999.png" width="400" /&gt;&lt;br /&gt;&lt;b&gt;Mosaic view&lt;/b&gt;&lt;br /&gt;&lt;img border="0" height="228" src="http://2.bp.blogspot.com/-v8o2acUKWDQ/TZWTXEdmGJI/AAAAAAAAA9A/0tLlETXgbLU/s400/SimplexDesign+-+free+premium+blogspot+template_1301648073005.png" width="400" /&gt; &lt;br /&gt;&lt;b&gt;Snapshot view&lt;/b&gt;&lt;br /&gt;&lt;img border="0" height="225" src="http://2.bp.blogspot.com/-2pPZRt0Oai4/TZWTYamhUBI/AAAAAAAAA9E/471pY7J8xBg/s400/SimplexDesign+-+free+premium+blogspot+template_1301648145794.png" width="400" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-8605670486982178274?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/8605670486982178274/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/04/blogger-offer-five-dynamic-views-for.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/8605670486982178274'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/8605670486982178274'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/04/blogger-offer-five-dynamic-views-for.html' title='Blogger offer five dynamic views for readers'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-mEBD9mQLeJ8/TZWTT8KL-LI/AAAAAAAAA84/sfmsQWkIFQc/s72-c/SimplexDesign+-+free+premium+blogspot+template_1301647299733.png' height='72' width='72'/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-1012149707498523579</id><published>2011-03-31T00:31:00.000+07:00</published><updated>2011-03-31T00:31:42.845+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Use Google web font to styling header and text in your blog</title><content type='html'>If you are using default Blogspot templates ,you can use Template Designer to set special fonts for header and text .But this function is not available if you are using a custom template . So how can we embed special fonts to blog ?&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-NgFAj1swLGM/TZNkfMk6T2I/AAAAAAAAA8g/rstOplWlXfo/s600/newfont.png" /&gt;&lt;br /&gt;&lt;br /&gt;As you may know ,Template Designer in Blogspot use Google font for applying special fonts to blog .In this post ,I will show you how to use Google Font for styling text in blog without Template Designer ,just need some lines of code .&lt;br /&gt;&lt;br /&gt;&lt;a href="http://simplexnewspro.blogspot.com/"&gt;&lt;b&gt;You can see demo here ( my template Simplex Newspro )&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here are steps : &lt;/h3&gt;1,Go to &lt;a href="http://www.google.com/webfonts/"&gt;&lt;b&gt;this site&lt;/b&gt;&lt;/a&gt; ,and select the font you like .&lt;br /&gt;&lt;br /&gt;2,When move your mouse over the font ,you will see the text "Click here to embed...." .Click on this text .A new page appear . Click on Use this font tab&lt;br /&gt;&lt;img border="0" height="238" src="http://3.bp.blogspot.com/-8VO48wRpWo0/TZNmrA31hHI/AAAAAAAAA8k/zzenyHsJDak/s400/indieflower.JPG" width="400" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3,You will see two lines :&lt;br /&gt;&lt;img height="331" src="http://3.bp.blogspot.com/-c6nv1PWkVn4/TZNm3hqt63I/AAAAAAAAA8o/9KJrQmtlPEE/indie.png" width="640" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The first line is something like this&amp;nbsp; :&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;link href='http://fonts.googleapis.com/css?family=&lt;/span&gt;&lt;b style="color: lime;"&gt;xxxxx&lt;/b&gt;&lt;span style="color: lime;"&gt;' rel='stylesheet' type='text/css'&amp;gt;&lt;/span&gt;&lt;br /&gt;xxxxx is the font name . Copy this line and paste right before &lt;span style="color: red;"&gt;&amp;lt;b:skin&amp;gt;&amp;lt;![CDATA[/*&lt;/span&gt; in template file . An important thing : you must add an slash ( / ) at the end of this line ,like that &lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;link href='http://fonts.googleapis.com/css?family=&lt;/span&gt;&lt;b style="color: lime;"&gt;xxxxx&lt;/b&gt;&lt;span style="color: lime;"&gt;' rel='stylesheet' type='text/css'/&amp;gt; &lt;/span&gt;&lt;br /&gt;If not ,you will see an error message .&lt;br /&gt;&lt;br /&gt;The second line you get in Google web font page is something like this : &lt;br /&gt;&lt;div style="color: lime;"&gt;h1 { font-family: 'xxxx',xxxxx; }&lt;/div&gt;xxx are font name and style of the font .&lt;br /&gt;&amp;nbsp;This line illustrate how the font you choose applied to h1 tag .&lt;br /&gt;&lt;br /&gt;To applied the font you choose to an element in blog ,find CSS code of this element , and add the attribute&amp;nbsp;&lt;span style="color: lime;"&gt; font-family: 'xxxx',xxxxx; &lt;/span&gt; into element's CSS attributes&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;For example&lt;/b&gt;&lt;/u&gt; ,in my live demo I applied new font to post title in template Simplex Newspro .&lt;br /&gt;&lt;b&gt;Here are steps I did :&lt;/b&gt;&lt;br /&gt;First ,I go to this website ,and choose the font Indie Flower&lt;br /&gt;&amp;nbsp;&lt;img border="0" height="238" src="http://3.bp.blogspot.com/-8VO48wRpWo0/TZNmrA31hHI/AAAAAAAAA8k/zzenyHsJDak/s400/indieflower.JPG" width="400" /&gt;&lt;br /&gt;Click on "click here to embed Indie Flower"&lt;br /&gt;&amp;nbsp;&lt;img height="331" src="http://3.bp.blogspot.com/-c6nv1PWkVn4/TZNm3hqt63I/AAAAAAAAA8o/9KJrQmtlPEE/indie.png" width="640" /&gt;&lt;br /&gt;Second ,I go to Dashboard - &amp;gt; Design -&amp;gt;Edit HTML -&amp;gt;Checked on Expand widget templates&lt;br /&gt;Add the first line to embed font Indie Flower&lt;br /&gt;&lt;br /&gt;&lt;img border="0" height="300" src="http://2.bp.blogspot.com/-cjUBJSrXEVo/TZNocR-f-WI/AAAAAAAAA8w/wZmGlXDGKq0/s640/addline.png" width="640" /&gt;&lt;br /&gt;&lt;br /&gt;After that ,add the font-family attribute to element I want to apply new font in CSS section&lt;br /&gt;&lt;img border="0" height="190" src="http://4.bp.blogspot.com/--KRhQDPV09k/TZNob5RHSFI/AAAAAAAAA8s/qYGhNP777Xk/s400/addline1.png" width="400" /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&lt;/span&gt; &lt;br /&gt;&lt;span style="color: lime;"&gt;&lt;/span&gt;That's all .Save template and new font will be appeared .&lt;br /&gt;&lt;br /&gt;In this post ,I just want to show you how to use Google font to embed new fonts to blog . It's very easy if you are familliar with CSS ,work with CSS or customize templates before . If you are a newbie and don't know where to insert font-family attributes to applied new font for an element,you can make a comment . I can help if possible .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-1012149707498523579?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/1012149707498523579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/03/use-google-web-font-to-styling-header.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1012149707498523579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1012149707498523579'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/03/use-google-web-font-to-styling-header.html' title='Use Google web font to styling header and text in your blog'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-NgFAj1swLGM/TZNkfMk6T2I/AAAAAAAAA8g/rstOplWlXfo/s72-c/newfont.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-4037962762300345264</id><published>2011-03-20T23:31:00.005+07:00</published><updated>2011-03-22T06:05:54.416+07:00</updated><title type='text'>Should we use Disqus or not ?</title><content type='html'>In renewed version of templates ,I always make two file ,one template file with Blogger default comment system and the other with Disqus comment system . You might ask me what we should chose for our blog ? In this post ,I will write something about them and I hope it helpful to your decision .&lt;br /&gt;&lt;br /&gt;&lt;img src="https://lh3.googleusercontent.com/-aJxMCThSytQ/TX5MfvdGGLI/AAAAAAAAA8Y/GUWahftX7Z4/blogger+copy.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;Disqus is a modern comment system for website and blog .It enhance the commenting system on your blog and designed to make commenting more exciting and interesting. It's a realtime comment system and you can see your comment show up immediately . With Disqus ,you can reply to an existed comment and interact with comments by votes ,keep tracks on comments with email notification ,you can also link to media files in your comments ,embed video,audio ... in comment ,and you can use Gravatar . Disqus allow you to comment in mobile ,sharing comments in social networks,and build a good community with commnunity box and comment profile .And I have to say that it really easy to install and using ,I can import export comments,moderate them in Dashboard and prevent spam with their anti-spam technology . If you use Blogger and install Disqus comment system ,you blog look really professional .&lt;br /&gt;&lt;br /&gt;But Disqus is not perfect ,it's an embeded comment system ,and work base on Ajax and javascript ,so it make your blog load slower or can not load if there's error in connection .Sometime ,Disqus script can conflict with other scripts ,therefore,they can't work . Another important thing I see that Disqus is not good for SEO . All comments in blog using Disqus can't be indexed by Google . Disqus said their system are SEO friendly ,but I do not think so .&lt;br /&gt;&lt;br /&gt;Blogger default comment system is on other side . It's really a boring comment system . Look simple and straight,no interaction ,no sharing tool ,no connection to other networks and no threaded comment . But it load fast and good for SEO . SEO here mean I can make a search in Google and see comment in search result . And we can customize it,make it display as we want with a little CSS and&amp;nbsp; code .Not so good but acceptable (as my templates ^^)&lt;br /&gt;&lt;br /&gt;Here is list of good and bad for Blogger and Disqus that I see . I hope you can share your own experience with these comment systems and give advice to choose one for blog to others . Thanks in advance&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-4037962762300345264?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/4037962762300345264/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/03/should-we-use-disqus-or-not.html#comment-form' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4037962762300345264'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4037962762300345264'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/03/should-we-use-disqus-or-not.html' title='Should we use Disqus or not ?'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='https://lh3.googleusercontent.com/-aJxMCThSytQ/TX5MfvdGGLI/AAAAAAAAA8Y/GUWahftX7Z4/s72-c/blogger+copy.jpg' height='72' width='72'/><thr:total>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-2280317739214600307</id><published>2011-03-13T22:43:00.000+07:00</published><updated>2011-03-13T22:43:19.262+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Update for Subscription pop-up</title><content type='html'>In comments of my previous post "&lt;a href="http://simplexdesign.blogspot.com/2011/02/using-jquery-to-make-one-time.html"&gt;Using Jquery to make an one-time subscription pop-up&lt;/a&gt;" ,YellOblog said that he want the pop-up appear after an amount of time and the pop-up is always at the center of viewport .Thanks YellOblog for the suggestion . Here is the complete code for your request :&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-QYj0iu3FQsc/TWds70HuB_I/AAAAAAAAA54/muS2X2Tskys/subscribe.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://dinhquanghuy.110mb.com/Subscribe%20pop-up.htm"&gt;&lt;b&gt;Live Demo&lt;/b&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;To make a Subscription Pop-up ,you can read my post&amp;nbsp; "&lt;a href="http://simplexdesign.blogspot.com/2011/02/using-jquery-to-make-one-time.html"&gt;Using Jquery to make an one-time subscription pop-up&lt;/a&gt;" and follow steps from 1 to 3 .&lt;br /&gt;&lt;br /&gt;For the step 4 - Jquery code ,replace the code in the post "&lt;a href="http://simplexdesign.blogspot.com/2011/02/using-jquery-to-make-one-time.html"&gt;Using Jquery to make an one-time subscription pop-up&lt;/a&gt;"&lt;br /&gt;with this one&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script src="http://dinhquanghuy.110mb.com/jquery.cookie.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var popupStatus = 0;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//loading popup with jQuery magic!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;function loadPopup(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; centerPopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //loads popup only if it is disabled&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(popupStatus==0){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").css({&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "opacity": "0.7"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").fadeIn("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContact").fadeIn("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; popupStatus = 1;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//disabling popup with jQuery magic!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;function disablePopup(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //disables popup only if it is enabled&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(popupStatus==1){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").fadeOut("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContact").fadeOut("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; popupStatus = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//centering popup&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;function centerPopup(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //request data for centering&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var windowWidth = document.documentElement.clientWidth;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var windowHeight = document.documentElement.clientHeight;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var windowscrolltop = document.documentElement.scrollTop; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var windowscrollleft = document.documentElement.scrollLeft; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var popupHeight = $("#popupContact").height();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var popupWidth = $("#popupContact").width();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var toppos = windowHeight/2-popupHeight/2+windowscrolltop;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var leftpos = windowWidth/2-popupWidth/2+windowscrollleft;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //centering&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContact").css({&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "position": "absolute",&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "top": toppos,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "left": leftpos&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //only need force for IE6&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").css({&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "height": windowHeight&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//CONTROLLING EVENTS IN jQuery&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;$(document).ready(function(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($.cookie("anewsletter") != 1) {&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; //load popup&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;setTimeout("loadPopup()",5000);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //CLOSING POPUP&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Click the x event!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContactClose").click(function(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; disablePopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.cookie("anewsletter", "1", { expires: 7 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Click out event!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").click(function(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; disablePopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.cookie("anewsletter", "1", { expires: 7 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Press Escape event!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).keypress(function(e){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if(e.keyCode==27 &amp;amp;&amp;amp; popupStatus==1){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; disablePopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.cookie("anewsletter", "1", { expires: 7 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;pay attention to this line &lt;span style="color: lime;"&gt;&lt;b&gt;setTimeout("loadPopup()",5000);&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;5000 is the delay time in millisecond . You can set another value if you want .&lt;br /&gt;That's all . I hope this update can fill your requests and make the subscription pop-up more profesional. You can check it out yourself and see the result .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-2280317739214600307?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/2280317739214600307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/03/update-for-subscription-pop-up.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2280317739214600307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/2280317739214600307'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/03/update-for-subscription-pop-up.html' title='Update for Subscription pop-up'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-QYj0iu3FQsc/TWds70HuB_I/AAAAAAAAA54/muS2X2Tskys/s72-c/subscribe.png' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-3976815289679357219</id><published>2011-03-09T21:59:00.002+07:00</published><updated>2011-03-09T22:03:40.608+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>SimplexNewsportal - renewed version</title><content type='html'>Here is the renewed version of my template SimplexNewsportal . It's a good template for magazine and newsportal . I tried my best to make it easier to install and use .&lt;br /&gt;There are two file for this template ,one with Disqus comment system and the other not .I added images folder to template package ,so if you want ,you can host images yourself&lt;br /&gt;&lt;img src="https://lh3.googleusercontent.com/-pGr7YK0k5sw/TXeQqex68AI/AAAAAAAAA8E/wgPyIYia05M/s800/simplexnewsportal_1299676695329.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://simplexnewsportal1.blogspot.com/"&gt;&lt;b&gt;Live Demo&lt;/b&gt;&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?1s7rai41v05acfr"&gt;&lt;b&gt;Download template with Disqus comment system&lt;/b&gt;&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?88qdp5f4577pkoy"&gt;&lt;b&gt;Download template with Blogger comment system&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here are steps for installing this template&lt;/h3&gt;1,Download template file .&lt;br /&gt;&lt;br /&gt;2,If you want to use Disqus comment system&lt;br /&gt;Open this template in a word editor and change the text in bold in this code&lt;br /&gt;&amp;nbsp;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var disqus_shortname = &amp;amp;#39;&lt;b&gt;simplexcelebs&lt;/b&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // The following are highly recommended additional parameters. Remove the slashes in front to use.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // var disqus_identifier = &amp;amp;#39;unique_dynamic_id_1234&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // var disqus_url = &amp;amp;#39;http://example.com/permalink-to-page.html&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dsq = document.createElement(&amp;amp;#39;script&amp;amp;#39;); dsq.type = &amp;amp;#39;text/javascript&amp;amp;#39;; dsq.async = true;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dsq.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/embed.js&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (document.getElementsByTagName(&amp;amp;#39;head&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;body&amp;amp;#39;)[0]).appendChild(dsq);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; })();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and this code&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div class='dsq-widget' id='recentcomments'&amp;gt;&amp;amp;lt;script type=&amp;amp;quot;text/javascript&amp;amp;quot; src=&amp;amp;quot;http://&lt;b&gt;simplexenews&lt;/b&gt;.disqus.com/recent_comments_widget.js?num_items=5&amp;amp;amp;hide_avatars=0&amp;amp;amp;avatar_size=32&amp;amp;amp;excerpt_length=200&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;/script&amp;amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;to your &lt;b&gt;Disqus shortname&lt;/b&gt; .This step is required . If you choose template file without Disqus ,you can skip this step .&lt;br /&gt;&lt;br /&gt;3,Upload template to Blogger&lt;br /&gt;&lt;br /&gt;4,To add logo&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-Funzv0439eg/TXeQI7Ryr6I/AAAAAAAAA6s/3l53fepLmC4/s1600/simplexnewsportal1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh5.googleusercontent.com/-Funzv0439eg/TXeQI7Ryr6I/AAAAAAAAA6s/3l53fepLmC4/s1600/simplexnewsportal1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on edit link in logo widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-0ItDEba5AfM/TXeQO406efI/AAAAAAAAA7Q/HiAcpKn3lgA/s1600/simplexnewsportal1-logo+widget.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh5.googleusercontent.com/-0ItDEba5AfM/TXeQO406efI/AAAAAAAAA7Q/HiAcpKn3lgA/s1600/simplexnewsportal1-logo+widget.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add logo into widget content like this&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-mUzavSAsT24/TXeQOH4fJaI/AAAAAAAAA7M/YqebAjA6UPU/s1600/simplexnewsportal1-logo+widget1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh3.googleusercontent.com/-mUzavSAsT24/TXeQOH4fJaI/AAAAAAAAA7M/YqebAjA6UPU/s1600/simplexnewsportal1-logo+widget1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;5,To add&amp;nbsp; link to your social network&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-uzg2mtGJYtc/TXeQY7IIDpI/AAAAAAAAA70/aIiHwKgnxV4/s1600/simplexnewsportal1-social.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh3.googleusercontent.com/-uzg2mtGJYtc/TXeQY7IIDpI/AAAAAAAAA70/aIiHwKgnxV4/s1600/simplexnewsportal1-social.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on Subscribe widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-znRHRhaa-_o/TXeQWv4orvI/AAAAAAAAA7s/x3psMZ6iUNo/s1600/simplexnewsportal1-social1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh6.googleusercontent.com/-znRHRhaa-_o/TXeQWv4orvI/AAAAAAAAA7s/x3psMZ6iUNo/s1600/simplexnewsportal1-social1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add link to your social network accounts.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-h2AqgTR3Auk/TXeQYbDJQzI/AAAAAAAAA7w/rD5p2NYAV1c/s1600/simplexnewsportal1-social2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh6.googleusercontent.com/-h2AqgTR3Auk/TXeQYbDJQzI/AAAAAAAAA7w/rD5p2NYAV1c/s1600/simplexnewsportal1-social2.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;6,To add items to menu&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-BRmEWfwbSgw/TXeQQ6jKuDI/AAAAAAAAA7c/vSB0MKIHuUI/s1600/simplexnewsportal1-menu.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh5.googleusercontent.com/-BRmEWfwbSgw/TXeQQ6jKuDI/AAAAAAAAA7c/vSB0MKIHuUI/s1600/simplexnewsportal1-menu.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on edit link in menu widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-pi-fNcBZD8U/TXeQPbZkDnI/AAAAAAAAA7U/_LxGUowObkM/s1600/simplexnewsportal1-menu1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh5.googleusercontent.com/-pi-fNcBZD8U/TXeQPbZkDnI/AAAAAAAAA7U/_LxGUowObkM/s1600/simplexnewsportal1-menu1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add link to your categories&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-IqXiRA8EUsE/TXeQQKjc-7I/AAAAAAAAA7Y/FRBqkV75zfk/s1600/simplexnewsportal1-menu2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh4.googleusercontent.com/-IqXiRA8EUsE/TXeQQKjc-7I/AAAAAAAAA7Y/FRBqkV75zfk/s1600/simplexnewsportal1-menu2.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Link to category in blogspot has structure &lt;b&gt;http://yourblog.blogspot.com/search/label/category name&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;7,To show content in headline widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-_O5M3otVqKU/TXeQNMMKMOI/AAAAAAAAA7I/0IytjfDzZEk/s1600/simplexnewsportal1-headline.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh6.googleusercontent.com/-_O5M3otVqKU/TXeQNMMKMOI/AAAAAAAAA7I/0IytjfDzZEk/s1600/simplexnewsportal1-headline.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on edit link in headline widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-PLAcbmap4Ts/TXeQL9t5KtI/AAAAAAAAA7A/IzReq-uXSCM/s1600/simplexnewsportal1-headline1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh4.googleusercontent.com/-PLAcbmap4Ts/TXeQL9t5KtI/AAAAAAAAA7A/IzReq-uXSCM/s1600/simplexnewsportal1-headline1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add the name of category you want to show in this widget&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-XLr8jTXC598/TXeQMBElZ1I/AAAAAAAAA7E/X_HxI7yH-fA/s1600/simplexnewsportal1-headline2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh5.googleusercontent.com/-XLr8jTXC598/TXeQMBElZ1I/AAAAAAAAA7E/X_HxI7yH-fA/s1600/simplexnewsportal1-headline2.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;8,To show content in feature content slider&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-4eZZbmo-lkU/TXeQWJ-2ctI/AAAAAAAAA7o/w7bcmgCSZW8/s1600/simplexnewsportal1-slider.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="174" src="https://lh6.googleusercontent.com/-4eZZbmo-lkU/TXeQWJ-2ctI/AAAAAAAAA7o/w7bcmgCSZW8/s320/simplexnewsportal1-slider.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on edit link in feature content slider&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-L1b-ksp5jIc/TXeQSV7YrOI/AAAAAAAAA7g/zG7Ygcsbmmk/s1600/simplexnewsportal1-slider1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh5.googleusercontent.com/-L1b-ksp5jIc/TXeQSV7YrOI/AAAAAAAAA7g/zG7Ygcsbmmk/s1600/simplexnewsportal1-slider1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add name of category you want to show in slider into widget content&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-FvML38OBSCc/TXeQTKnq4SI/AAAAAAAAA7k/Zj3LWw0hPFM/s1600/simplexnewsportal1-slider2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh6.googleusercontent.com/-FvML38OBSCc/TXeQTKnq4SI/AAAAAAAAA7k/Zj3LWw0hPFM/s1600/simplexnewsportal1-slider2.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;9,Do the same for content left ,content right widgets .Just add a category name into widget content ,and recent posts in this category will be shown in widget's position in homepage .&lt;br /&gt;&lt;br /&gt;10,Top ads,ads1 ,ads2 are widgets for advertisment . To add your ads&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-_RkRetzaU88/TXeQew62a1I/AAAAAAAAA8A/zXGh049Oxto/s1600/simplexnewsportal1-topads.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="46" src="https://lh5.googleusercontent.com/-_RkRetzaU88/TXeQew62a1I/AAAAAAAAA8A/zXGh049Oxto/s320/simplexnewsportal1-topads.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;click on edit link&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-FFen_6EdrVQ/TXeQaHCU-RI/AAAAAAAAA74/Mw-gO_MIFts/s1600/simplexnewsportal1-topads1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh4.googleusercontent.com/-FFen_6EdrVQ/TXeQaHCU-RI/AAAAAAAAA74/Mw-gO_MIFts/s1600/simplexnewsportal1-topads1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;add your ad code into widget content .&lt;br /&gt;&lt;a href="https://lh4.googleusercontent.com/-JcG7IuYRe4Y/TXeQbL744PI/AAAAAAAAA78/jcS0_Kf1OMI/s1600/simplexnewsportal1-topads2.png" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh4.googleusercontent.com/-JcG7IuYRe4Y/TXeQbL744PI/AAAAAAAAA78/jcS0_Kf1OMI/s1600/simplexnewsportal1-topads2.png" /&gt;&lt;/a&gt;&lt;br /&gt;11,You can add your own widgets if you want&lt;br /&gt;&lt;br /&gt;12, To add a forum ,create a page (Go to Dashboard-Posting tab -&amp;gt;Edit Pages,click on new page) , name it "forum" and then paste the forum embeded code into page content (in Edit HTML mode)&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-TZBEL-sM17U/TXeQLKQHs5I/AAAAAAAAA68/t_KlttwfMcU/s1600/simplexnewsportal1-forum.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="213" src="https://lh3.googleusercontent.com/-TZBEL-sM17U/TXeQLKQHs5I/AAAAAAAAA68/t_KlttwfMcU/s400/simplexnewsportal1-forum.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;After that , go to Dashboard -&amp;gt; Go to Design -&amp;gt; Edit HTML  ,search for  the text 'http://simplexnewsportal1.blogspot.com/p/forum.html'&lt;br /&gt;&lt;br /&gt;and   replace it with link to 'forum' page you've just created .There are 3   places need to change in total .&lt;br /&gt;1st place&lt;br /&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-kQHmsNDq6aE/TXeQJhWeNLI/AAAAAAAAA6w/rwzE_98iYqs/s1600/simplexnewsportal1-forum1.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="311" src="https://lh4.googleusercontent.com/-kQHmsNDq6aE/TXeQJhWeNLI/AAAAAAAAA6w/rwzE_98iYqs/s640/simplexnewsportal1-forum1.png" width="640" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;1st&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;2nd&lt;br /&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-FN-cwsaV2Uo/TXeQKahBf2I/AAAAAAAAA60/CKlQ2NGhreM/s1600/simplexnewsportal1-forum2.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="310" src="https://lh6.googleusercontent.com/-FN-cwsaV2Uo/TXeQKahBf2I/AAAAAAAAA60/CKlQ2NGhreM/s640/simplexnewsportal1-forum2.png" width="640" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;2nd&lt;/td&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;3rd&lt;br /&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-VWdsyIVU1lA/TXeQK2CBq4I/AAAAAAAAA64/gn6w3SD9K6A/s1600/simplexnewsportal1-forum3.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="308" src="https://lh4.googleusercontent.com/-VWdsyIVU1lA/TXeQK2CBq4I/AAAAAAAAA64/gn6w3SD9K6A/s640/simplexnewsportal1-forum3.png" width="640" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;3rd&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;After that ,save the changes .&lt;br /&gt;&lt;br /&gt;13,To increase/decrease the number of post in each category ,go to Design -&amp;gt;edit HTML -&amp;gt; checked Expand widget templates ,and find these variables in template file :&lt;br /&gt;numposts = 3; &lt;br /&gt;numposts1 = 4; &lt;br /&gt;numposts2 = 6;&lt;br /&gt;&lt;br /&gt;try to change these values to what you need .&lt;br /&gt;That's all for this template . I hope you like this re-newed version .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-3976815289679357219?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/3976815289679357219/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/03/simplexnewsportal-renewed-version.html#comment-form' title='82 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3976815289679357219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3976815289679357219'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/03/simplexnewsportal-renewed-version.html' title='SimplexNewsportal - renewed version'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='https://lh3.googleusercontent.com/-pGr7YK0k5sw/TXeQqex68AI/AAAAAAAAA8E/wgPyIYia05M/s72-c/simplexnewsportal_1299676695329.png' height='72' width='72'/><thr:total>82</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-4416782068083541339</id><published>2011-03-06T00:03:00.001+07:00</published><updated>2011-03-06T00:04:16.592+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Auto apply lightbox effect to all images</title><content type='html'>In my blog ,DJ Remix Town asked me for how to auto applied Lightbox effect to all images uploaded ,do not need to edit HTML and add rel="lightbox" manually. And now I have the answer for this question :&lt;br /&gt;&lt;img src="https://lh6.googleusercontent.com/-1dPjxYxEN_Q/TXJsw_nYnsI/AAAAAAAAA6o/QAdpFj-rg54/simplexcelebs.png" /&gt;&lt;br /&gt;&lt;h3&gt;How to do this ? &lt;/h3&gt;First ,you need to read &lt;b style="color: lime;"&gt;&lt;a href="http://simplexdesign.blogspot.com/2011/01/jquery-lightbox-working-in-blogger.html"&gt;this post&lt;/a&gt;&lt;/b&gt; and follow all my instruction for install jquery lightbox to blog .&lt;br /&gt;&lt;br /&gt;The magic is on the second step ,find and replace this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;$(function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;$('a[rel*=lightbox]').lightBox();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;with this&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;$(function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;$('a[href$=jpg], a[href$=JPG], a[href$=jpeg], a[href$=JPEG], a[href$=png], a[href$=gif], a[href$=bmp]:has(img)').lightBox();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The difference between them is this line &lt;span style="color: lime;"&gt;$('a[href$=jpg], a[href$=JPG], a[href$=jpeg], a[href$=JPEG], a[href$=png], a[href$=gif], a[href$=bmp]:has(img)').lightBox();&amp;nbsp;&lt;/span&gt;&lt;br /&gt;This line mean Lightbox effect will be applied to all &lt;span style="color: lime;"&gt;&amp;lt;a ...&amp;gt;&lt;/span&gt; tag which has an &lt;span style="color: lime;"&gt;&amp;lt;img&amp;gt;&lt;/span&gt; tag inside ,and the href attribute of a tag is a link to image file (with the extension : gif,bmp,jpeg,png,jpg)&lt;br /&gt;&lt;br /&gt;From now ,you can upload and insert images to your post using uploader in post editor window and don't care for the rest . Lightbox effect will be applied to all images .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-4416782068083541339?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/4416782068083541339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/03/lightbox-auto-show-image.html#comment-form' title='43 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4416782068083541339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4416782068083541339'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/03/lightbox-auto-show-image.html' title='Auto apply lightbox effect to all images'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='https://lh6.googleusercontent.com/-1dPjxYxEN_Q/TXJsw_nYnsI/AAAAAAAAA6o/QAdpFj-rg54/s72-c/simplexcelebs.png' height='72' width='72'/><thr:total>43</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-1690608386052294271</id><published>2011-02-25T15:51:00.002+07:00</published><updated>2011-03-13T22:44:59.399+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Using Jquery to make an one-time subscription pop-up</title><content type='html'>&lt;div style="color: red;"&gt;&lt;a href="http://simplexdesign.blogspot.com/2011/03/update-for-subscription-pop-up.html"&gt;&lt;span style="font-size: large;"&gt;A new update for this post ,you can see here&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Many of bloggers said that a subscription pop-up very helpful in increasing the number of subsriber . Some bloggers such as Johnchow use subscription pop-up to show his new books and ask for subscription from readers .As you can see ,the number of subscriber in Johnchow website is very impressive .&lt;br /&gt;Pop-up good or bad ? I do not mentioned here ^^&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-QYj0iu3FQsc/TWds70HuB_I/AAAAAAAAA54/muS2X2Tskys/subscribe.png" /&gt;&lt;br /&gt;&lt;br /&gt;In this post ,I've just want to show you how to make a subscription pop-up for your blog . This pop-up will appear in the first-time you visit and it only appear again after several days .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://dinhquanghuy.110mb.com/Subscribe%20pop-up.htm"&gt;Live Demo&lt;/a&gt;&lt;/b&gt; &lt;br /&gt;&lt;h3&gt;Here are steps for making a pop-up in Blogspot&lt;/h3&gt;1,Open template file by go to Blogspot Dashboard -&amp;gt;Design -&amp;gt;Edit HTML . Check the box "Expand widget templates"&lt;br /&gt;&lt;br /&gt;2,Add this CSS code right before &lt;span style="color: red;"&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;#popupContactClose{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;cursor: pointer;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;text-decoration:none;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;#backgroundPopup{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;display:none;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;position:fixed;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;_position:absolute; /* hack for internet explorer 6*/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;height:100%;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;width:100%;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;top:0;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;left:0;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;background:#000000;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;border:1px solid #cecece;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;z-index:1;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;#popupContact{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;display:none;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;position:fixed;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;_position:absolute; /* hack for internet explorer 6*/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;height:384px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;width:408px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;background:#FFFFFF;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;border:2px solid #cecece;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;z-index:2;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;padding:12px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;font-size:13px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;#popupContact h1{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;text-align:left;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;color:#6FA5FD;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;font-size:22px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;font-weight:700;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;border-bottom:1px dotted #D3D3D3;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;padding-bottom:2px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;margin-bottom:20px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;#popupContactClose{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;font-size:14px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;line-height:14px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;right:6px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;top:4px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;position:absolute;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;color:#6fa5fd;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;font-weight:700;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;display:block;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3,Add this HTML code right before &lt;span style="color: red;"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div id="popupContact"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a id="popupContactClose"&amp;gt;x&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;h1&amp;gt;&lt;b&gt;Pop-up title goes here&lt;/b&gt;&amp;lt;/h1&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;p id="contactArea"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;b&gt;your pop-up content and subscription form ... goes here&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;div id="backgroundPopup"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This is HTML code of your subscription pop-up .&lt;br /&gt;Replace the text in bold with title of pop-up and pop-up content .&lt;br /&gt;To make this popup becomes a subscription pop-up ,you can add Feedburner subscription code into pop-up content . Like this&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;div id="popupContact"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a id="popupContactClose"&amp;gt;x&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;h1&amp;gt;Subscription to SimplexDesign&amp;lt;/h1&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;p id="contactArea"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;&amp;nbsp;&amp;lt;form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=Simplex', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"&amp;gt;&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;Enter your email address:&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;p&amp;gt;&amp;lt;input type="text" style="width:140px" name="email"/&amp;gt;&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;input type="hidden" value="Simplex" name="uri"/&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;input type="hidden" name="loc" value="en_US"/&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;input type="submit" value="Subscribe" /&amp;gt;&lt;/span&gt;&lt;br style="color: lime;" /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/form&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;div id="backgroundPopup"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The text in bold is the code of Feedburner subscription form .&lt;br /&gt;&lt;br /&gt;&lt;i&gt;You might ask me : how to get Feedburner subscription form ?&lt;/i&gt;&lt;br /&gt;&lt;i&gt;It's very easy .If you are using Feedburner ,login to your feedburner account -&amp;gt; click on your blog feed -&amp;gt;click on Publicize tab -&amp;gt; Click on Email Subscriptions -&amp;gt; Active this service -&amp;gt; code of subscription form is in text box .&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;If you do not use Feedburner ,you can add other code to pop-up content ....&lt;br /&gt;&lt;br /&gt;4, Now it's time to add Jquery code . This code will make the pop-up work .&lt;br /&gt;Add this code right before &lt;span style="color: red;"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script src="http://dinhquanghuy.110mb.com/jquery.cookie.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var popupStatus = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//this code will load popup with jQuery magic!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;function loadPopup(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //loads popup only if it is disabled&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(popupStatus==0){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").css({&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "opacity": "0.7"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").fadeIn("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContact").fadeIn("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; popupStatus = 1;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//This code will disable popup when click on x!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;function disablePopup(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //disables popup only if it is enabled&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(popupStatus==1){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").fadeOut("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContact").fadeOut("slow");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; popupStatus = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//this code will center popup&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;function centerPopup(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //request data for centering&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var windowWidth = document.documentElement.clientWidth;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var windowHeight = document.documentElement.clientHeight;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var popupHeight = $("#popupContact").height();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var popupWidth = $("#popupContact").width();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //centering&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContact").css({&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "position": "absolute",&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "top": windowHeight/2-popupHeight/2,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "left": windowWidth/2-popupWidth/2&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //only need force for IE6&lt;/span&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").css({&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; "height": windowHeight&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;//CONTROLLING EVENTS IN jQuery&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;$(document).ready(function(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($.cookie("anewsletter") != 1) {&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; //centering with css&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; centerPopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; //load popup&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; loadPopup();&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //CLOSING POPUP&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Click the x event!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#popupContactClose").click(function(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; disablePopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.cookie("anewsletter", "1", { expires: 7 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Click out event!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#backgroundPopup").click(function(){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; disablePopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.cookie("anewsletter", "1", { expires: 7 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Press Escape event!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).keypress(function(e){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if(e.keyCode==27 &amp;amp;&amp;amp; popupStatus==1){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; disablePopup();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.cookie("anewsletter", "1", { expires: 7 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The pop-up will show if you are first-time visitor to the blog and will not displayed again&amp;nbsp; for 7 days . &lt;br /&gt;With this feature ,reader will not be annoyed by pop-up each time they visit your blog . After 7 days ,the pop-up will show again to remind visitor to subscribing your blog . You can set the number of days pop-up will be appeared again by set the value of &lt;span style="color: lime;"&gt;expires: 7 &lt;/span&gt; to other value ,for example ,&lt;span style="color: lime;"&gt;expires: 6 &lt;/span&gt; ^^&lt;br /&gt;&lt;br /&gt;Note : If error occured when uploading template ,you must encode the script in step 4 by copying the code ,and go to &lt;a href="http://centricle.com/tools/html-entities/"&gt;&lt;b&gt;this page&lt;/b&gt;&lt;/a&gt; ,paste the code in textbox and click on &lt;b&gt;encode&lt;/b&gt; . After that copy the result and paste it back to template file .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That's all for subscription pop-up .&lt;br /&gt;You can save template and back to your blog to see the changes. &lt;br /&gt;I hope this post will be helpful&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-1690608386052294271?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/1690608386052294271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/using-jquery-to-make-one-time.html#comment-form' title='32 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1690608386052294271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1690608386052294271'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/using-jquery-to-make-one-time.html' title='Using Jquery to make an one-time subscription pop-up'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-QYj0iu3FQsc/TWds70HuB_I/AAAAAAAAA54/muS2X2Tskys/s72-c/subscribe.png' height='72' width='72'/><thr:total>32</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-7323355133833022808</id><published>2011-02-23T22:57:00.002+07:00</published><updated>2011-02-23T23:07:44.596+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Update : How to move images in Simplex's templates from ImageShack to another host</title><content type='html'>Many of you complaint me for trouble with imageshack.us today . Early today ,all images which hosted in Imageshack.us has been changed to ugly Frogs .&lt;br /&gt;I wrote a post on &lt;a href="http://simplexdesign.blogspot.com/2011/02/update-imageshack-error-unregister.html"&gt;how to register your domain with imageshack&lt;/a&gt; .But this way ,you have to wait for them to approve your site .&lt;br /&gt;In this post ,I will show you the way to download all images in a Simplex's template to your PC and then upload it to another host .&lt;br /&gt;&lt;h3&gt;Here are steps&lt;/h3&gt;1,First ,go to imageshack.us and register an account if you don't have one .&lt;br /&gt;If you have an account existed , please login to your account .&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-2IPPSQ1VsqQ/TWUo2OGc4vI/AAAAAAAAA5o/H8VJNwlwKo4/s600/imageshack-login.png" /&gt;&lt;br /&gt;With the new Imageshack policy ,we can only see images and download them if we are registered members . So it's the reason why we need to login to our accounts in imageshack.us .&lt;br /&gt;&lt;br /&gt;Keep the imageshack browser window open .Do not close it .&lt;br /&gt;&lt;br /&gt;2,Open another browser tab. Go to Blogger Dashboard -&amp;gt;Design -&amp;gt;Edit HTML,checked in Expand widget templates .&lt;br /&gt;Press Ctr+F for search function and type the term "imageshack.us" into searchbox ,then enter&lt;br /&gt;&lt;img src="http://4.bp.blogspot.com/-HpjJ0jVfqzI/TWUo1sJ-lSI/AAAAAAAAA5k/JZgX1Edssn8/s600/imageshack-dashboard.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It will show you all link of images which were hosted in imageshack.us like picture above .&lt;br /&gt;&lt;br /&gt;3, Copy one image link ( in the bracket ) .&lt;br /&gt;&lt;img src="http://1.bp.blogspot.com/-CUgZLVysxmo/TWUo1R2IgZI/AAAAAAAAA5g/UrHGmM97q0o/s600/imageshack-copy.png" /&gt;&lt;br /&gt;Open another browser tab and paste the link into address bar .&lt;br /&gt;Click enter ,it will show you the image .Right click on image and choose " save picture as " . Save this image on your hard disk.&lt;br /&gt;&lt;img src="http://3.bp.blogspot.com/-84BDilZqGEc/TWUo2lANqkI/AAAAAAAAA5s/ZMp0ZVyOH34/s600/imageshack-save.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4,Find another hosting that support image , for example , in this post ,I use Imgplace.com ( this hosting is just an example and you can use another hosting providers,paid or free ,it's up to you ) . I open imgplace.com website in another tab of browser window , choose the file and click Upload &lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-Bi3eDd8a7Vs/TWUo3cVezRI/AAAAAAAAA5w/n6OUKHfPjkg/s600/imgplace.png" /&gt;&lt;br /&gt;&lt;br /&gt;When finish uploading ,copy the direct link&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-2AQGt92nmvg/TWUo33Zy2qI/AAAAAAAAA50/5Rv3tnaZlBo/s600/imgplacecopy.PNG" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5,Back to the browser tab which template file are opening . Paste the image's direct link we got from the hosting to template file .Like this (see the arrow,new link in Imgplace.com replaced old one in Imageshack.us )&lt;br /&gt;&lt;br /&gt;&lt;img src="http://1.bp.blogspot.com/-RbdEVfFcCcI/TWUoyeUM6rI/AAAAAAAAA5Y/h9g7yxdAoLs/s600/imgplacepaste.png" /&gt;&lt;br /&gt;&lt;br /&gt;When you finish this step ,you are succesfull in moving one image from Imageshack.us to Imgplace.com hosting .&lt;br /&gt;&lt;br /&gt;6, Do the same with other images which were hosted in Imageshack.us&lt;br /&gt;&lt;br /&gt;All steps can do very fast , you can move an image from Imageshack to another host in less than 30 seconds .Because each template has some images ,so it only take you less than 10 minutes for all images .&lt;br /&gt;Save template file and shutdown browser window .&lt;br /&gt;&lt;br /&gt;You just finish moving all images in a Simplex's template from Imageshack.us to another hosting .&lt;br /&gt;I hope this post helpful .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-7323355133833022808?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/7323355133833022808/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/how-to-move-images-from-imageshack-to.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7323355133833022808'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7323355133833022808'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/how-to-move-images-from-imageshack-to.html' title='Update : How to move images in Simplex&apos;s templates from ImageShack to another host'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-2IPPSQ1VsqQ/TWUo2OGc4vI/AAAAAAAAA5o/H8VJNwlwKo4/s72-c/imageshack-login.png' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-7354048124813633486</id><published>2011-02-23T15:09:00.006+07:00</published><updated>2011-02-23T15:56:35.910+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Update : Imageshack error unregister domain - how to fix ?</title><content type='html'>Today ,not only in SimplexDesign blog and templates,the image of "IceFrog" with text like “&lt;b&gt;Your country can only view this image by logging into ImageShack&lt;/b&gt;” or “&lt;b&gt;Unregistered domain. Go to http://imageshack.us to register&lt;/b&gt;”  appeared everywhere . This problem was happening to all images which were linked  directly to ImageShack .&lt;br /&gt;&lt;img border="0" height="277" src="http://2.bp.blogspot.com/-zhdSE9gu_DQ/TWTE9jbNgPI/AAAAAAAAA5Q/Ja-DVKP1PoM/s320/imageshack.png" width="320" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you had  uploaded an image to ImageShack and posted it on your website, blog, or  any other applications then the ImageShack Icefrog picture would show up.&lt;br /&gt;Codes provided by Image Shack are working such as the embed link to  image. We can only see the images when we login imageshack.us .If not ,we can see the icefrog .All images are locked .&lt;br /&gt;&lt;br /&gt;The solution here is very simple , you have to register your domain to imageshack.us by visiting this page and fill all the information needed: &lt;a href="http://stream.imageshack.us/content.php?page=email&amp;amp;q=reg_domain" rel="nofollow" target="_blank"&gt;http://stream.imageshack.us/content.php?page=email&amp;amp;q=reg_domain&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Note that this must be done by the site owner that is being affected in order for them to verify the ownership.&lt;br /&gt;When you finish submiting your site ,just wait .They will aprove your site shortly and images will be displayed as before .&lt;br /&gt;With the new policy ,I think imageshack.us is not a good choice for us from now . What happen if one day ,they lock all images and ask for money .&lt;br /&gt;&lt;br /&gt;I will try another solution and provide you images to help you host them yourself as soon as possible .&lt;br /&gt;&lt;b&gt;If you can't wait , you can register an account in Imageshack.us ,and login  . After that open template file (xml file) and search for "imageshack.us" , it will show you link of all images that hosted in Imageshack.us  . Copy all these links to download manager program (such as Internet Download Manager ,Orbit,Flashget ...) and this program will download  all images for you . This is the best way for you to get all images . Remember you can do this when you have an imageshack account and you loged in .&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-7354048124813633486?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/7354048124813633486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/update-imageshack-error-unregister.html#comment-form' title='22 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7354048124813633486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/7354048124813633486'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/update-imageshack-error-unregister.html' title='Update : Imageshack error unregister domain - how to fix ?'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-zhdSE9gu_DQ/TWTE9jbNgPI/AAAAAAAAA5Q/Ja-DVKP1PoM/s72-c/imageshack.png' height='72' width='72'/><thr:total>22</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-3410642502365952614</id><published>2011-02-21T09:35:00.001+07:00</published><updated>2011-07-05T09:55:37.485+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>SimplexBuzz - one more premium template</title><content type='html'>This is my latest template SimplexBuzz . This template has a eye-catching feature slider ,and I think it's good for travel/art/photography blog . &lt;br /&gt;&lt;img src="http://img543.imageshack.us/img543/7017/simplexbuzzscreenshot.png" /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://simplexclip.blogspot.com/"&gt;Live Demo&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?c3qalfy4wa0ygpd"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here are steps to install this template&lt;/h3&gt;&lt;br /&gt;1,Download template file&lt;br /&gt;&lt;br /&gt;2,Open template file in any word editor you have .&lt;br /&gt;&lt;br /&gt;3,To change the credit box at the end of each post &lt;br /&gt;&lt;img src="http://img228.imageshack.us/img228/3766/simplexbuzzcreditbox.png" /&gt;&lt;br /&gt;find this code&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;div id="authorbox"&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;h3&amp;gt;&lt;b&gt;About Author&lt;/b&gt;&amp;lt;/h3&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;img width="60" height="60" class="avatar avatar-60 photo" src="&lt;b&gt;http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg&lt;/b&gt;" alt=""/&amp;gt;             &lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;div class="authortext"&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;h4&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;a href=""&amp;gt;&lt;b&gt;Nhamnganhanh&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/h4&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;p&amp;gt;&lt;b&gt;This is template SimplexBuzz . &lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/p&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/div&amp;gt;  &lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/div&amp;gt; &lt;/div&gt;&lt;br /&gt;Change the text in bold to what you want (you can write some description about you and your blog ...)&lt;br /&gt;&lt;br /&gt;4, To add your feedburner account to email subscription form&lt;br /&gt;&lt;img src="http://img839.imageshack.us/img839/2130/simplexbuzzemailsubscri.png" /&gt;&lt;br /&gt;find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;form onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=&lt;b&gt;simplex&lt;/b&gt;', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow" method="post" action="http://feedburner.google.com/fb/a/mailverify"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fieldset&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="hidden" name="uri" value="&lt;b&gt;simplex&lt;/b&gt;"/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;input type="hidden" value="en_US" name="loc"/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;input type="text" name="email" class="sub"/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;button type="submit"&amp;gt;Submit&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/fieldset&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/form&amp;gt;&lt;/span&gt;&lt;br /&gt;change the text in bold 'simplex' to your feed burner account .&lt;br /&gt;&lt;br /&gt;5,To add your social network accounts&lt;br /&gt;&lt;img src="http://img46.imageshack.us/img46/8619/simplexbuzzsocial.png" /&gt;&lt;br /&gt;find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;ul class="social"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a class="twitter" href="&lt;b&gt;http://twitter.com/dinhquanghuy"&amp;gt;Twitter&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a class="facebook" href="&lt;b&gt;http://facebook.com/simplexdesignblog&lt;/b&gt;"&amp;gt;Facebook&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a class="flickr" href="&lt;b&gt;http://flickr.com/photos&lt;/b&gt;/"&amp;gt;Flickr&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li class="rss"&amp;gt;&amp;lt;a class="rss" href="/feeds/posts/default"&amp;gt;RSS&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;change the links (marked in bold) to your social network accounts.&lt;br /&gt;&lt;br /&gt;6,After that ,upload template to Blogger .&lt;br /&gt;&lt;br /&gt;7,To add your logo&lt;br /&gt;&lt;img src="http://img207.imageshack.us/img207/1914/simplexbuzzlogo.png" /&gt;&lt;br /&gt;click on logo widget&lt;br /&gt;&lt;img src="http://img840.imageshack.us/img840/7624/simplexbuzzlogo1.png" /&gt;&lt;br /&gt;then add your logo into widget content as I did in picture below&lt;br /&gt;&lt;img src="http://img190.imageshack.us/img190/8679/simplexbuzzlogo2.png" /&gt;&lt;br /&gt;Click Save&lt;br /&gt;&lt;br /&gt;8,To add items to top menu navigation&lt;br /&gt;&lt;img src="http://img502.imageshack.us/img502/5218/simplexbuzzcategory2.png" /&gt;&lt;br /&gt;click edit link in category widget&lt;br /&gt;&lt;img src="http://img10.imageshack.us/img10/4813/simplexbuzzcategory.png" /&gt;&lt;br /&gt;then add link to your category into widget content like this&lt;br /&gt;&lt;img src="http://img38.imageshack.us/img38/6385/simplexbuzzcategory1.png" /&gt;&lt;br /&gt;Link to category in blogspot has structure : http://yourblogspot.blogspot.com/search/label/your category&lt;br /&gt;&lt;br /&gt;9,To add content to feature slider&lt;br /&gt;&lt;img src="http://img268.imageshack.us/img268/9167/simplexbuzzfeatureslide.png" /&gt;&lt;br /&gt;Click on edit link in 'feature content slider' widget&lt;br /&gt;Then add the name category which you want to show recent posts in feature content slider in widget content&lt;br /&gt;for example ,I want to show recent posts under 'travel' category into feature content slider ,I click edit link in 'feature content slider' widget&lt;br /&gt;&lt;img src="http://img534.imageshack.us/img534/9167/simplexbuzzfeatureslide.png" /&gt;&lt;br /&gt;then fill the widget content with name of category 'travel'&lt;br /&gt;&lt;img src="http://img14.imageshack.us/img14/9167/simplexbuzzfeatureslide.png" /&gt;&lt;br /&gt;Save changes . From now ,4 latest posts in category 'travel' will be showed in feature slider&lt;br /&gt;&lt;br /&gt;10,To show post in feature content section below slider&lt;br /&gt;&lt;img src="http://img33.imageshack.us/img33/2117/simplexbuzzfeatureconte.png" /&gt;&lt;br /&gt;click on edit link in feature content widget&lt;br /&gt;&lt;img src="http://img59.imageshack.us/img59/2117/simplexbuzzfeatureconte.png" /&gt;&lt;br /&gt;add name of category you want to show into widget content&lt;br /&gt;&lt;img src="http://img27.imageshack.us/img27/2117/simplexbuzzfeatureconte.png" /&gt;&lt;br /&gt;Then save changes . Recent posts in this category will be showed in feature content section .&lt;br /&gt;&lt;br /&gt;11,In this template , when you enter a single post ,the first image in this post will be showed as background in header automatically .&lt;br /&gt;But when you enter a page ,there's no image displayed in header .&lt;br /&gt;To add image in the header of pages &lt;br /&gt;&lt;img src="http://img819.imageshack.us/img819/3705/simplexbuzzpagebg.png" /&gt;&lt;br /&gt;click on edit link in 'background for page' widget&lt;br /&gt;&lt;img src="http://img407.imageshack.us/img407/4637/simplexbuzzpagebg1.png" /&gt;&lt;br /&gt;and add the image into widget content .&lt;br /&gt;&lt;img src="http://img594.imageshack.us/img594/3459/simplexbuzzpagebg2.png" /&gt;&lt;br /&gt;From now ,the image you added will be showed as header's background each time you enter a page .&lt;br /&gt;&lt;br /&gt;12,To add the text in alert box&lt;br /&gt;&lt;img src="http://img843.imageshack.us/img843/3733/simplexbuzzalert.png" /&gt;&lt;br /&gt;click on edit link in 'alert' widget &lt;br /&gt;&lt;img src="http://img249.imageshack.us/img249/2135/simplexbuzzalert1.png" /&gt;&lt;br /&gt;and enter the text you want to show .&lt;br /&gt;&lt;img src="http://img517.imageshack.us/img517/1527/simplexbuzzalert2.png" /&gt;&lt;br /&gt;You can use HTML tags to make text in alert box display as you want .&lt;br /&gt;&lt;br /&gt;13,To add your ad,click on edit link in banner widget&lt;br /&gt;&lt;img src="http://img4.imageshack.us/img4/3672/simplexbuzzbanner.png" /&gt;&lt;br /&gt;and add your ad code into widget content .&lt;br /&gt;&lt;img src="http://img208.imageshack.us/img208/1091/simplexbuzzbanner1.png" /&gt;&lt;br /&gt;&lt;br /&gt;14, That's all for default widgets .You can add more widget or remove existed as you want .&lt;br /&gt;&lt;br /&gt;Save all changes ,and you are done .I hope you all like this template and keep supporting me .&lt;br /&gt;Feel free to use my template but please keep the credit at footer .Thanks in advance .&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;Update : As question from YUSUF left in my blog related to problems on long post titles and width of post in home page ,here is the solution&lt;/div&gt;&lt;div style="color: red;"&gt; Find this&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;div.post h2.storyTitle {&lt;br /&gt;color: #000000;&lt;br /&gt;float: none;&lt;br /&gt;font-size: 2.6em;&lt;br /&gt;font-weight: bold;&lt;br /&gt;line-height: 120%;&lt;br /&gt;margin-bottom: 5px;&lt;br /&gt;width: 585px;&lt;br /&gt;}&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;and delete  width: 585px;&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/i&gt;Then find&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;div.post div.storyContent {&lt;br /&gt;float: none;&lt;br /&gt;margin-bottom: 20px;&lt;br /&gt;width: 585px;&lt;br /&gt;}&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;delete  width: 585px;&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/i&gt;To fix the problem with recent posts/comments tab when post title is long :&lt;br /&gt;First ,find this&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;div#sidebar div.tabsContainer ul.panes ul li h4 {&lt;br /&gt;left: 70px;&lt;br /&gt;position: absolute;&lt;br /&gt;top: 15px;&lt;br /&gt;}&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;and delete all of them&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/i&gt;Second ,find this&lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;div#sidebar div.tabsContainer ul.panes ul li p.meta {&lt;br /&gt;bottom: 0;&lt;br /&gt;color: #85837E;&lt;br /&gt;font-size: 0.9em;&lt;br /&gt;left: 70px;&lt;br /&gt;line-height: 120%;&lt;br /&gt;overflow: hidden;&lt;br /&gt;position: absolute;&lt;br /&gt;}&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;Then change it to &lt;i&gt;&lt;i&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;div#sidebar div.tabsContainer ul.panes ul li p.meta {&lt;br /&gt;color: #85837E;&lt;br /&gt;font-size: 0.9em;&lt;br /&gt;line-height: 120%;&lt;br /&gt;margin-left: 60px; &lt;br /&gt;}&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;i&gt;&lt;i&gt; &lt;/i&gt;&lt;/i&gt;the last step : Find this&lt;i&gt;&lt;i&gt;&lt;/i&gt;&lt;/i&gt;&lt;/div&gt;&lt;i style="color: red;"&gt;&lt;i&gt;&lt;br /&gt;&lt;i&gt;div#sidebar div.tabsContainer ul.panes ul.comments li h4 {left:35px; width:250px;}&lt;/i&gt;&lt;br /&gt;And replace it with&lt;br /&gt;&lt;i&gt;&lt;br /&gt;div#sidebar div.tabsContainer ul.panes ul.comments li h4 {&lt;br /&gt;margin-left: 20px;&lt;br /&gt;}&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;&lt;i&gt;&lt;i&gt;&lt;i&gt;&lt;/i&gt;&lt;/i&gt;&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-3410642502365952614?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/3410642502365952614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/simplexbuzz-one-more-premium-template.html#comment-form' title='48 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3410642502365952614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3410642502365952614'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/simplexbuzz-one-more-premium-template.html' title='SimplexBuzz - one more premium template'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><thr:total>48</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-3461728095458195598</id><published>2011-02-12T00:32:00.000+07:00</published><updated>2011-02-12T00:32:26.377+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>SimplexEnews - the latest version - fixed errors ,easy to install</title><content type='html'>This is the latest version for SimplexEnews template ,that is fixed some errors occured .Easy to install and customize via widget in Page Elements&lt;br /&gt;&lt;img src="http://img842.imageshack.us/img842/8090/fireshotcapture024simpl.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://simplexenews1.blogspot.com/"&gt;Live Demo&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?4jfqjle106n4wl3"&gt;Download template file with Disqus&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?pj1asp93a8lyk8u"&gt;Download template file without Disqus&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here is steps to install this template&lt;/h3&gt;1,Download this template&lt;br /&gt;&lt;br /&gt;2,Open template file in a word editor&lt;br /&gt;&lt;br /&gt;3,To make a menu navigation&lt;br /&gt;&lt;img src="http://img205.imageshack.us/img205/8751/simplexenewsmenu.png" /&gt;&lt;br /&gt;find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div id='cat-menu'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul class='sf-menu nav' id='cat-nav'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/&lt;/b&gt;'&amp;gt;&lt;b&gt;Home&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/world&lt;/b&gt;'&amp;gt;&lt;b&gt;World&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/US&lt;/b&gt;'&amp;gt;&lt;b&gt;US&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/business&lt;/b&gt;'&amp;gt;&lt;b&gt;Business&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/entertainment&lt;/b&gt;'&amp;gt;&lt;b&gt;Entertainment&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/Sports&lt;/b&gt;'&amp;gt;&lt;b&gt;Sports&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/tech&lt;/b&gt;'&amp;gt;&lt;b&gt;Technology&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/editor&lt;/b&gt;'&amp;gt;&lt;b&gt;Editor&lt;/b&gt;&amp;amp;#39;&lt;b&gt;s picks&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexenews1.blogspot.com/search/label/story&lt;/b&gt;'&amp;gt;&lt;b&gt;Top Stories&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href=''&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;and edit the text in bold to the name and url of your categories . Link to each category has structure&lt;br /&gt;&lt;b&gt;http://your blog.blogspot.com/search/label/category-name&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;4,This is the code of credit box at the end of each post :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div class='clear' id='entry-author'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;div id='author-avatar'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;img alt='' height='60' src='&lt;b&gt;http://0.gravatar.com/avatar/4c2ed72c6be86742f05e9750110d5731?s=60&amp;amp;amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&amp;amp;amp;r=G&lt;/b&gt;' width='60'/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;lt;!--end .author-avatar--&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;div id='author-description'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;h3&amp;gt;&lt;b&gt;About author&lt;/b&gt;&amp;lt;/h3&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;b&gt;Curabitur at est vel odio aliquam fermentum in vel tortor. Aliquam eget laoreet metus. Quisque auctor dolor fermentum nisi imperdiet vel placerat purus convallis.&lt;/b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;lt;!--end .author-description--&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt; &amp;lt;!--end .entry-author--&amp;gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;img src="http://img607.imageshack.us/img607/6859/simplexenewscreditbox.png" /&gt;&lt;br /&gt;Edit the text in bold to the text you want (you can change it ,add link to your profile ,translate it to your language )&lt;br /&gt;&lt;br /&gt;5,If you choose the template file with Disqus comment system ,find this code&amp;nbsp; &lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var disqus_shortname = &amp;amp;#39;&lt;/span&gt;&lt;b style="color: red;"&gt;simplexenews&lt;/b&gt;&lt;span style="color: red;"&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (function () {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var s = document.createElement(&amp;amp;#39;script&amp;amp;#39;); s.async = true;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s.type = &amp;amp;#39;text/javascript&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/count.js&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (document.getElementsByTagName(&amp;amp;#39;HEAD&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;BODY&amp;amp;#39;)[0]).appendChild(s);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }());&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and this code :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;b:includable id='comments' var='post'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;div id='disqus_thread'/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var disqus_shortname = &amp;amp;#39;&lt;b&gt;simplexenews&lt;/b&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // The following are highly recommended additional parameters. Remove the slashes in front to use.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // var disqus_identifier = &amp;amp;#39;unique_dynamic_id_1234&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // var disqus_url = &amp;amp;#39;http://example.com/permalink-to-page.html&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dsq = document.createElement(&amp;amp;#39;script&amp;amp;#39;); dsq.type = &amp;amp;#39;text/javascript&amp;amp;#39;; dsq.async = true;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dsq.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/embed.js&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (document.getElementsByTagName(&amp;amp;#39;head&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;body&amp;amp;#39;)[0]).appendChild(dsq);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; })();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;noscript&amp;gt;Please enable JavaScript to view the &amp;lt;a href='http://disqus.com/?ref_noscript'&amp;gt;comments powered by Disqus.&amp;lt;/a&amp;gt;&amp;lt;/noscript&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;lt;/b:includable&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and this code &lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div class='dsq-widget' id='recentcomments'&amp;gt;&amp;amp;lt;script type=&amp;amp;quot;text/javascript&amp;amp;quot; src=&amp;amp;quot;http://&lt;b&gt;simplexenews&lt;/b&gt;.disqus.com/recent_comments_widget.js?num_items=5&amp;amp;amp;hide_avatars=0&amp;amp;amp;avatar_size=32&amp;amp;amp;excerpt_length=200&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;/script&amp;amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;change the text 'simplexenews' (marked in bold) to your Disqus shortname .This step is required because if you don't change this text ,it mean  you are using my Disqus account ,so I can delete your comment&lt;br /&gt;Now ,save template and upload it to blogger . &lt;br /&gt;&lt;br /&gt;6, To add logo to this template&lt;br /&gt;&lt;img src="http://img232.imageshack.us/img232/8816/simplexenewslogo.png" /&gt;&lt;br /&gt;&lt;br /&gt;click edit link in logo widget&lt;br /&gt;&lt;img src="http://img8.imageshack.us/img8/6302/simplexenewslogo1.png" /&gt;&lt;br /&gt;&lt;br /&gt;and add link to your logo in widget content&lt;br /&gt;&lt;img src="http://img137.imageshack.us/img137/7014/simplexenewslogo2.png" /&gt;&lt;br /&gt;&lt;br /&gt;7,To add your social network accounts&lt;br /&gt;&lt;img src="http://img404.imageshack.us/img404/9236/simplexenewssocial1.png" /&gt;&lt;br /&gt;&lt;br /&gt;click on 'edit' link in &lt;b&gt;Social Networks&lt;/b&gt; widget&amp;nbsp; &lt;br /&gt;&lt;img src="http://img715.imageshack.us/img715/5567/simplexenewssocial.png" /&gt;&lt;br /&gt;&lt;br /&gt;and add link to your social network accounts .&lt;br /&gt;&lt;img src="http://img831.imageshack.us/img831/5401/simplexenewssocial2.png" /&gt;&lt;br /&gt;&lt;br /&gt;8,&lt;b&gt;'topads','Midads' ,'ads2'&lt;/b&gt; are widgets for advertising .&lt;br /&gt;&lt;img src="http://img404.imageshack.us/img404/3561/simplexenewstopads1.png" /&gt;&lt;br /&gt;You can click on 'edit' link of these widgets &lt;br /&gt;&lt;img src="http://img200.imageshack.us/img200/2315/simplexenewstopads.png" /&gt;&lt;br /&gt;&lt;br /&gt;and add the ad code into widget content . Like this&lt;br /&gt;&lt;img src="http://img43.imageshack.us/img43/9643/blognewstopads2.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9,To show posts under a category in the slider:&lt;br /&gt;&lt;img src="http://img694.imageshack.us/img694/161/simplexenewsslider.png" /&gt;&lt;br /&gt;click on 'edit' link in '&lt;b&gt;Looped Slider&lt;/b&gt;' widget &lt;br /&gt;&lt;img src="http://img717.imageshack.us/img717/5950/simplexenewsslider1.png" /&gt;&lt;br /&gt;add the title you want to show into widget title ,and add the name of category into widget content .&lt;br /&gt;&lt;img src="http://img34.imageshack.us/img34/4180/simplexenewsslider2.png" /&gt;&lt;br /&gt;In  these pictures above ,I want to show posts in 'feature' category  into  slider ,so I add category name 'feature' into widget content and  add  the title 'feature' into widget title .&lt;br /&gt;&lt;br /&gt;10,Do the same with other widgets . Click on 'edit' link in a widget  ,add a category name into widget content and add the title you want to  show in widget title . Recent posts in this category will be shown in  where the widget you choose is .&lt;br /&gt;For example ,I want to show posts under category 'US' in the position of widget 'Two col-right' &lt;br /&gt;First ,I click on 'edit' link in '&lt;b&gt;Two col-right&lt;/b&gt;' &lt;br /&gt;&lt;img src="http://img703.imageshack.us/img703/8296/simplexenewswidget.png" /&gt;&lt;br /&gt;a dialog appeared, then , I add the category name 'US' into widget content ,and add the title I want to show 'US' into widget title . &lt;br /&gt;&lt;img src="http://img97.imageshack.us/img97/2748/simplexenewswidget1.png" /&gt;&lt;br /&gt;After that ,click Save .&lt;br /&gt;&lt;img src="http://img829.imageshack.us/img829/3677/simplexenewswidget2.png" /&gt;&lt;br /&gt;If  the category 'US' existed in my blog ,and there is at least one  post under category 'US' ,it will be displayed in the position of  'Two col-right'&lt;br /&gt;&lt;br /&gt;11,Do the same with the carousel&lt;br /&gt;&lt;img src="http://img40.imageshack.us/img40/8605/simplexenewscarousel.png" /&gt;&lt;br /&gt;For example ,I want to show posts under category 'headline' in the position of carousel widget&amp;nbsp; &lt;br /&gt;First ,I click on 'edit' link in '&lt;b&gt;Carousel&lt;/b&gt;' &lt;br /&gt;&lt;img src="http://img710.imageshack.us/img710/8716/simplexenewscarousel1.png" /&gt;&lt;br /&gt;a dialog appeared .&lt;br /&gt;Then ,I add the category name 'headline' into widget content ,and add the title I want to show 'headline' into widget title . &lt;br /&gt;&lt;img src="http://img51.imageshack.us/img51/2265/simplexenewscarousel2.png" /&gt;&lt;br /&gt;After that ,click Save .&lt;br /&gt;The posts under 'headline' category will be shown in carousel widget&lt;br /&gt;&lt;br /&gt;12,To add video&lt;br /&gt;&lt;img src="http://img40.imageshack.us/img40/9939/simplexenewsvideo.png" /&gt;&lt;br /&gt;click on edit link in video widget&lt;br /&gt;&lt;img src="http://img232.imageshack.us/img232/3053/simplexenewsvideo1.png" /&gt;&lt;br /&gt;add video embed code into widget content&lt;br /&gt;&lt;img src="http://img819.imageshack.us/img819/8896/simplexenewsvideo2.png" /&gt;&lt;br /&gt;&lt;br /&gt;13,To add photos to Flickr widget&lt;br /&gt;&lt;img src="http://img844.imageshack.us/img844/2439/simplexenewsflickr.png" /&gt;&lt;br /&gt;click on edit link in Flickr widget&lt;br /&gt;&lt;img src="http://img690.imageshack.us/img690/9684/simplexenewsflickr1.png" /&gt;&lt;br /&gt;add Flickr id into widget content&lt;br /&gt;&lt;img src="http://img52.imageshack.us/img52/6223/simplexenewsflickr2.png" /&gt;&lt;br /&gt;&lt;br /&gt;14,To add Category ,Blogroll &lt;br /&gt;&lt;img src="http://img822.imageshack.us/img822/4347/simplexenewscategory.png" /&gt;&lt;br /&gt;&lt;br /&gt;you can click on edit link in these widget ,for example Category widget&lt;br /&gt;&lt;img src="http://img26.imageshack.us/img26/5980/simplexenewscategory1.png" /&gt;&lt;br /&gt;add link you want&lt;br /&gt;&lt;img src="http://img511.imageshack.us/img511/8676/simplexenewscategory2.png" /&gt;&lt;br /&gt;&lt;br /&gt;15,To add a forum to blog,create a new page ,name it 'forum' and  paste the forum embeded code into page content (in Edit HTML mode)&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img820.imageshack.us/img820/7224/blognewsembededforum.png" /&gt;&lt;br /&gt;&lt;br /&gt;then  go to Dashboard -&amp;gt; Go to Design -&amp;gt; Edit HTML ,search for  the text 'http://simplexenews1.blogspot.com/p/forum.html'&lt;br /&gt;&lt;br /&gt;and  replace it with link to 'forum' page you've just created .There are 3  places need to change in total . After that ,save the changes .&lt;br /&gt;&lt;br /&gt;Here are places need to change 'http://simplexenews1.blogspot.com/p/forum.html' with the link to your forum page :&lt;br /&gt;&lt;i&gt;1st place :&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img265.imageshack.us/img265/1326/simplexenewsforum.png" /&gt;&lt;br /&gt;&lt;i&gt;2nd place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img199.imageshack.us/img199/6633/simplexenewsforum1.png" /&gt;&lt;br /&gt;&lt;i&gt;3rd place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img821.imageshack.us/img821/766/simplexenewsforum2.png" /&gt;&lt;br /&gt;That's all .Save template and you will see a full-width forum page .&lt;br /&gt;&lt;br /&gt;16, Lightbox effect has been integrated in this template&lt;br /&gt;&lt;br /&gt;To use Lightbox effect in your post ,when editing post ,click on Edit HTML .&lt;br /&gt;&lt;img height="384" src="http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s640/light-box-image-viewer-for-blogger.png" width="640" /&gt;&lt;br /&gt;To add lightbox effect for one image , use &lt;span id="summary3501621382436557553"&gt;&lt;span style="color: blue;"&gt;&lt;b&gt;&lt;span style="color: lime;"&gt;rel="lightbox" title="Your image Caption"&lt;/span&gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt; as picture above&lt;br /&gt;To add lightbox effect for multiple images , &lt;span id="summary3501621382436557553"&gt;use &lt;b style="color: lime;"&gt;rel="lightbox[albumname]" title="Your Image Caption"&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;if you want to add another image to this album,upload the second image and use   &lt;span style="color: blue;"&gt;&lt;b&gt;rel="lightbox[albumname]" title="Caption for Second image of albumname"&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span id="summary3501621382436557553" style="color: lime;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;in this case , lightbox will work like a &lt;span class="IL_AD" id="IL_AD1"&gt;gallery&lt;/span&gt; with next and previous links&amp;nbsp; and you can use keyboard to navigate through the album&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;17,If you want to increase/decrease the number of post in each category ,go to Design -&amp;gt;edit HTML -&amp;gt; checked Expand widget templates ,and find these variables in template file :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;numposts&amp;nbsp; = 6; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;numposts1 = 3; &lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;numposts2 = 6;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;numposts3 = 4;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;numposts5 = 5;&lt;/span&gt;&lt;br style="color: red;" /&gt;&lt;span style="color: red;"&gt;numposts6 = 10; &lt;/span&gt;&lt;br /&gt;try to change these values to what you need .&lt;br /&gt;&lt;br /&gt;That's all for this template . You can add / remove widgets or change the position in Page Elements&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-3461728095458195598?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/3461728095458195598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/simplexenews-latest-version-fixed.html#comment-form' title='259 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3461728095458195598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3461728095458195598'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/simplexenews-latest-version-fixed.html' title='SimplexEnews - the latest version - fixed errors ,easy to install'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s72-c/light-box-image-viewer-for-blogger.png' height='72' width='72'/><thr:total>259</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-42312933893401755</id><published>2011-02-10T16:36:00.000+07:00</published><updated>2011-02-10T16:46:13.463+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ecommerce'/><title type='text'>Ultimate Guide to Get approved by Google Adsense</title><content type='html'>&lt;i&gt;This is a guest post by my friend SAHL AHMED  who is a tech geek  and  a  SEO expert and Founder of Humor And technology Blog – &lt;a href="http://humortechblog.com/"&gt;HumorTechBlog.Com&lt;/a&gt;&lt;/i&gt;&lt;br /&gt;&lt;img src="http://3.bp.blogspot.com/_jI-WOvRUBLg/TUzNAxgedGI/AAAAAAAAAOs/afK36WLvZGQ/s1600/google_money.jpg" /&gt;&lt;span style="background-color: transparent; color: #444444; font-family: Times New Roman; font-size: 12pt; font-style: normal; font-weight: bold; text-decoration: none; vertical-align: baseline;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;Most of the new bloggers step into blogging only because of Google Adsense . They think that they can make some money from their blog with Google adsense. But when they don’t get approved by adsense they are left with only one choice to quit blogging.&lt;br /&gt;&lt;b&gt;In this post ,I will show you the method to get approved by Google Adsense.&lt;/b&gt;&lt;br /&gt;First of all , I assume you know what Google Adsense is the importance of Google Adsense to blogger's life .Here's  a small summary if you never heard about Adsense .&lt;br /&gt;&lt;b&gt;What is Google Adsense?&lt;/b&gt;&lt;br /&gt;Google.com earns most of revenue by allowing other website owners to advertise on their search result pages. This is managed through a program called Google AdWords.&lt;br /&gt;Now you can earn a share of the revenue that Google earns from AdWords by displaying ads on your site.  In other words, you're helping Google advertise and they pay you a percentage of what they earn.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;This revenue sharing program is called Google AdSense.&lt;/b&gt;&lt;br /&gt;&lt;b&gt;It is the highest paying PPC (pay per click) program.&lt;/b&gt;&lt;br /&gt;&lt;img src="http://www.incomegate.com/wp-content/uploads/2010/08/how-adsense-works.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Who can join adsense? &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Adsense is &lt;b&gt;FREE&lt;/b&gt; &lt;b&gt;to Join&lt;/b&gt; if your website passes its &lt;b&gt;CRITERIAS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;There are many criterias&lt;/b&gt;&lt;br /&gt;1.Your website should be 6 months old&lt;br /&gt;2.It should have be a Top level Domain&lt;br /&gt;&lt;b&gt;Click &lt;a href="https://www.google.com/adsense/localized-terms?rc=IN&amp;amp;ce=1&amp;amp;hl=en_US"&gt;HERE&lt;/a&gt; for the list of criterias&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How much time would it take to get adsense approved by using this method?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1. 15 To 30 days or maximum 2 months&lt;br /&gt;2. Implementation of 14 Steps.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You have to implement 14 points below in order to make your blog/website ready for Google Adsense and get approved quickly :&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1. Start a Blog on blogger.com Or use ur existing blog.&lt;br /&gt;&lt;br /&gt;2. Put a cool and soothing template ..not too flashy and but too simple. It should look professional.&lt;br /&gt;&lt;br /&gt;3. Buy a Custom domain (top level domain  i.e  (.COM) to publish your blogger blog on it. It should have a Name which relates to your blog . It will cost you some money but worth to do . (Google doesn't accept domains with &lt;b&gt;.blogspot.com&lt;/b&gt; nowaday)&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Tip: search on google for "How to use custom domain on blogger" &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;4.Write 20-30 good articles about your niche . If you can't , go to any article directory ( like Ezine etc ...) ,get articles and rewrite them in a very different way .&lt;br /&gt;&lt;i&gt;Tip: The more Orignal content , the better are the chances but don't rush and put a lot of articles.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;5. An about me/Us page and a privacy policy page is a  must-have and link to these pages should be seen on your homepage.&lt;br /&gt;&lt;br /&gt;6. Put a neat and clean &lt;b&gt;EMAIL subscription Box&lt;/b&gt; and a &lt;b&gt;Blog archive widget.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;7. Submit your website to Google , Bing , Yahoo and other search engines.&lt;br /&gt;&lt;br /&gt;8. Bookmark your website in google and submit to Digg .&lt;br /&gt;&lt;i&gt;Tip : - never submit more than 15 links to Digg at a time if you don't want to get a ban !&lt;/i&gt;&lt;br /&gt;&lt;i&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - follow and get followers before submitting to Digg.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;9. Make a Facebook fan page ,a Twitter account and a youtube channel in your blog or your website name. If not ,try your name .&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Tip: Put a link – “FOLLOW US On twitter" clickable image or a Facebook like box on your blog!&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;10. Get some Facebook fans and Twitter followers by inviting fellow bloggers , friends , family , relatives . Upload 5-10 videos on Youtube and get some views.&lt;br /&gt;&lt;i&gt;Tip: Add a link at the start of your video description and at Twitter / Facebook about us page.&lt;/i&gt;&lt;br /&gt;&lt;i&gt;There are 2 ways by which you can get views to your video.&lt;/i&gt;&lt;br /&gt;&lt;i&gt;1. White hat method – By uploading original video tutorials or funny or cool videos which are made by you.&lt;/i&gt;&lt;br /&gt;&lt;i&gt;2. Black hat method- This method includes re-uploading of latest videos which have less views till now and  which are good enough to get a lot of views.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;I don’t encourage black hat method so for more information please contact me &lt;/i&gt;.&lt;br /&gt;&lt;br /&gt;11. Share every post of you on Facebook profile and to Twitter followers , ask them to visit your website often.&lt;br /&gt;&lt;br /&gt;12.Make an account on flixya.com and upload 10 videos or more .The same which you uploaded on youtube.&lt;br /&gt;&lt;i&gt;Tip : put your website link in all the videos on bottom of  original description.&lt;/i&gt;&lt;br /&gt;After uploading 10 videos or more you can apply for Adsense via flixya.com by going to the monetize tab.&lt;br /&gt;&lt;br /&gt;13.Get traffic to you blog ( get as much as u can after applying for adsense as they check your website traffic)&lt;br /&gt;&lt;br /&gt;Traffic sources :&lt;br /&gt;-.Search engines&lt;br /&gt;-.forums&lt;br /&gt;-.twitter&lt;br /&gt;-.facebook profile and fan page&lt;br /&gt;-.youtube&lt;br /&gt;-.flixya.com&lt;br /&gt;-.Email marketing&lt;br /&gt;&lt;br /&gt;14.( Most important )You should apply by flixya.com and by your website also ,on the same day.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Fill in all the details properly as it is difficult to change it after approval&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;15. If you apply the second time after getting banned or disapproved : make small changes in your ADDRESS and apply again.. &lt;br /&gt;e.g  make co op ..co operative or make  opp --&amp;gt; opposite or vice – versa.&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;What will happen after applying : The trick ?&lt;/b&gt;&lt;br /&gt;&lt;i&gt;As youtube and flixya.com are Google revenue sharing platforms , Google will check the both these .&lt;/i&gt;&lt;br /&gt;&lt;i&gt;So if your making an improvement at 3 places ,you will become a good  publisher to invest in + you have a blog /webisite which is worthy of showing ads . Therefore it approves you.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;PLAN A TIME TABLE FOR ALL THIS SO THAT IT DOESN’T BECOME STRESSFULL&lt;/b&gt;&lt;br /&gt;&lt;b&gt;This is not an illegal  method ,I've just shared what helped me to get an adsense account. &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Please note:&lt;/b&gt;&lt;br /&gt;-Wait for 10-12 days before applying from flixya.com.&lt;br /&gt;-While making an account on flixya.com or youtube use the email address by which your are gonna apply for adsense.&lt;br /&gt;&lt;br /&gt;Now that you know all the things needed to make a powerfull blog.&lt;br /&gt;Start now and rock it.&lt;br /&gt;&lt;br /&gt;Thank you for your precious time.&lt;br /&gt;&lt;br /&gt;&lt;div class="author" style="background: none repeat scroll 0% 0% rgb(248, 248, 248); border: medium none rgb(221, 221, 221); padding: 10px;"&gt;&lt;h4&gt;About Author&lt;/h4&gt;&lt;b&gt;SAHL AHMED  a tech geek  and  a&lt;br /&gt;&lt;br /&gt;SEO expert . Founder of Humor And technology Blog – HumorTechBlog.Com&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;For reference :&lt;br /&gt;&lt;br /&gt;Blog : &lt;a href="http://www.humortechblog.com/"&gt;http://www.humortechblog.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Youtube : &lt;a href="http://www.youtube.com/user/sahlcooool"&gt;http://www.youtube.com/user/sahlcooool&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Flixya  : &lt;a href="http://www.flixya.com/user/sahlcoolio"&gt;http://www.flixya.com/user/sahlcoolio&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Twitter : &lt;a href="http://twitter.com/HumorTechBlog"&gt;http://twitter.com/HumorTechBlog&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Facebook fan page:  &lt;a href="http://www.facebook.com/HumorTechBlog"&gt;http://www.facebook.com/HumorTechBlog&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Digg : http://digg.com/sahlsmash&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-42312933893401755?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/42312933893401755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/ultimate-guide-to-get-approved-by.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/42312933893401755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/42312933893401755'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/ultimate-guide-to-get-approved-by.html' title='Ultimate Guide to Get approved by Google Adsense'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_jI-WOvRUBLg/TUzNAxgedGI/AAAAAAAAAOs/afK36WLvZGQ/s72-c/google_money.jpg' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-3664902306122814629</id><published>2011-02-07T11:56:00.000+07:00</published><updated>2011-02-07T11:58:18.995+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>Simplex Transcript - renewed version</title><content type='html'>Simplex Transcript is a good template for an online portal or magazine . There's a lot of people download this template from Simplexdesign and use this template for their website . There are some bugs has been reported . Thanks you all for this.&lt;br /&gt;In this post ,I want to introduce renewed version of Simplex Transcript template&amp;nbsp; which is easier for you to install and customize ,fixed some bugs ,reduce loading time ,supported lightbox effect ,and a full-width page .&lt;br /&gt;&lt;img alt="Simplex Transcript template screenshot" src="http://img26.imageshack.us/img26/6110/simplextranscriptblogsp.png" title="Simplex Transcript template screenshot" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://simplextranscript.blogspot.com/"&gt;&lt;b&gt;Live Demo&lt;/b&gt;&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?69hww9gw191m88u"&gt;&lt;b&gt;Download template file with Disqus&lt;/b&gt;&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?kinb454dlkk1k9g"&gt;&lt;b&gt;Download template file without Disqus&lt;/b&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here is steps to install this template&lt;/h3&gt;&lt;br /&gt;1,Download this template&lt;br /&gt;&lt;br /&gt;2,Open template file&lt;br /&gt;&lt;br /&gt;3,To make your main menu navigation&lt;br /&gt;&lt;img src="http://img844.imageshack.us/img844/52/simplextranscriptmenu.png" /&gt;&lt;br /&gt;find this code&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div id='navcats'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href='&lt;b&gt;http://simplextranscript.blogspot.com&lt;/b&gt;'&amp;gt;&lt;b&gt;Home&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href='&lt;b&gt;/search/label/world&lt;/b&gt;'&amp;gt;&lt;b&gt;World News&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul class='children'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;#&lt;/b&gt;'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;#&lt;/b&gt;'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;/search/label/sports&lt;/b&gt;'&amp;gt;&lt;b&gt;Sports&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;/search/label/finance&lt;/b&gt;'&amp;gt;&lt;b&gt;Finance&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul class='children'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;/search/label/entertainment&lt;/b&gt;'&amp;gt;&lt;b&gt;Entertainment&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;ul class='children'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;/search/label/business&lt;/b&gt;'&amp;gt;&lt;b&gt;Business&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&lt;/span&gt; &lt;br /&gt;and edit the text in bold to the name and url of your categories . Link to each category has structure&lt;br /&gt;&lt;b&gt;http://your blog.blogspot.com/search/label/category-name&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;4,This is the code of credit box at the end of each post&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;div id='entryMeta'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;img alt='' class='avatar avatar-39 photo' height='39' src='&lt;b&gt;http://3.bp.blogspot.com/_MsaNQZtvB5E/StANnrMWRCI/AAAAAAAAAKY/WmvDsGT-YfA/S45/normal_HNH_9244-sapa0207.jpg&lt;/b&gt;' width='39'/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;b&gt;Posted by&lt;/b&gt; &amp;lt;data:post.author/&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;on &amp;lt;data:post.timestamp/&amp;gt;. &lt;b&gt;Filed under &lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;b:loop values='data:post.labels' var='label'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;a expr:href='data:label.url' rel='tag'&amp;gt;&amp;lt;data:label.name/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;b:if cond='data:label.isLast != &amp;amp;quot;true&amp;amp;quot;'&amp;gt;,&amp;lt;/b:if&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/b:loop&amp;gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;b&gt;You can follow any responses to this entry through the&lt;/b&gt; &amp;lt;a href='/feeds/posts/default/'&amp;gt;&lt;b&gt;RSS 2.0&lt;/b&gt;&amp;lt;/a&amp;gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;b&gt;Feel free to leave a response&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;div class='clear'/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img706.imageshack.us/img706/9209/simplextranscriptcredit.png" /&gt;&lt;br /&gt;&lt;br /&gt;Edit the text in bold to the text you want (you can change it ,add link to your profile ,translate it to your language )&lt;br /&gt;&lt;br /&gt;5,If you choose the template file with Disqus comment system &lt;br /&gt;find this code &lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/div&gt;&lt;div style="color: red;"&gt;var disqus_shortname = &amp;amp;#39;&lt;b&gt;simplexblognews&lt;/b&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/div&gt;&lt;div style="color: red;"&gt;(function () {&lt;/div&gt;&lt;div style="color: red;"&gt;var s = document.createElement(&amp;amp;#39;script&amp;amp;#39;); s.async = true;&lt;/div&gt;&lt;div style="color: red;"&gt;s.type = &amp;amp;#39;text/javascript&amp;amp;#39;;&lt;/div&gt;&lt;div style="color: red;"&gt;s.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/count.js&amp;amp;#39;;&lt;/div&gt;&lt;div style="color: red;"&gt;(document.getElementsByTagName(&amp;amp;#39;HEAD&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;BODY&amp;amp;#39;)[0]).appendChild(s);&lt;/div&gt;&lt;div style="color: red;"&gt;}());&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/div&gt;&lt;br /&gt;and this code &lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&amp;lt;b:includable id='comments' var='post'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;div id='disqus_thread'/&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/div&gt;&lt;div style="color: red;"&gt;var disqus_shortname = &amp;amp;#39;&lt;b&gt;simplexblognews&lt;/b&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;// The following are highly recommended additional parameters. Remove the slashes in front to use.&lt;/div&gt;&lt;div style="color: red;"&gt;// var disqus_identifier = &amp;amp;#39;unique_dynamic_id_1234&amp;amp;#39;;&lt;/div&gt;&lt;div style="color: red;"&gt;// var disqus_url = &amp;amp;#39;http://example.com/permalink-to-page.html&amp;amp;#39;;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;/* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/div&gt;&lt;div style="color: red;"&gt;(function() {&lt;/div&gt;&lt;div style="color: red;"&gt;var dsq = document.createElement(&amp;amp;#39;script&amp;amp;#39;); dsq.type = &amp;amp;#39;text/javascript&amp;amp;#39;; dsq.async = true;&lt;/div&gt;&lt;div style="color: red;"&gt;dsq.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/embed.js&amp;amp;#39;;&lt;/div&gt;&lt;div style="color: red;"&gt;(document.getElementsByTagName(&amp;amp;#39;head&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;body&amp;amp;#39;)[0]).appendChild(dsq);&lt;/div&gt;&lt;div style="color: red;"&gt;})();&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;noscript&amp;gt;Please enable JavaScript to view the &amp;lt;a href='http://disqus.com/?ref_noscript'&amp;gt;comments powered by Disqus.&amp;lt;/a&amp;gt;&amp;lt;/noscript&amp;gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&amp;lt;/b:includable&amp;gt;&lt;/div&gt;&lt;br /&gt;then change the text in bold "&lt;b&gt;simplexblognews&lt;/b&gt;" to your Disqus shortname . This step is required because if you don't change this text ,it mean you are using my Disqus account ,so I can delete your comment (hehe ^^)&lt;br /&gt;&lt;br /&gt;Now save template .Upload it to Blogger&lt;br /&gt;&lt;br /&gt;6,To add logo to this template&lt;br /&gt;&lt;img src="http://img828.imageshack.us/img828/5109/simplextranscriptlogo.png" /&gt;&lt;br /&gt;click on edit link in logo widget &lt;br /&gt;&lt;img src="http://img7.imageshack.us/img7/7963/simplextranscriptlogo1.png" /&gt;&lt;br /&gt;&lt;br /&gt;and add link to your logo in widget content&lt;br /&gt;&lt;img src="http://img528.imageshack.us/img528/1655/simplextranscriptlogo2.png" /&gt;&lt;br /&gt;&lt;br /&gt;7,To add your social network account &lt;br /&gt;&lt;img src="http://img214.imageshack.us/img214/6048/simplextranscriptstayco.png" /&gt;&lt;br /&gt;&lt;br /&gt;click on 'edit' link in &lt;b&gt;Stay Connected&lt;/b&gt; widget &lt;br /&gt;&lt;img src="http://img689.imageshack.us/img689/6048/simplextranscriptstayco.png" /&gt;&lt;br /&gt;&lt;br /&gt;and add link to your social network accounts .&lt;br /&gt;&lt;img src="http://img217.imageshack.us/img217/6048/simplextranscriptstayco.png" /&gt;&lt;br /&gt;&lt;br /&gt;8,&lt;b&gt;'top ads','Top sidebar ads' ,'primarybottom sidebar','home sidebar ads'&lt;/b&gt; are widgets for advertising . You can click on 'edit' link of these widgets &lt;br /&gt;&lt;img src="http://img806.imageshack.us/img806/6236/simplextranscripttopads.png" /&gt;&lt;br /&gt;and add the ad code into widget content . Like this&lt;br /&gt;&lt;img src="http://img43.imageshack.us/img43/9643/blognewstopads2.png" /&gt;&lt;br /&gt;&lt;br /&gt;9,To show posts under a category in the slider:&lt;br /&gt;&lt;img src="http://img651.imageshack.us/img651/5928/simplextranscriptslider.png" /&gt;&lt;br /&gt;click on 'edit' link in '&lt;b&gt;feature content slider&lt;/b&gt;' widget &lt;br /&gt;&lt;img src="http://img716.imageshack.us/img716/5928/simplextranscriptslider.png" /&gt;&lt;br /&gt;add the title you want to show into widget title ,and add the name of category into widget content .&lt;br /&gt;&lt;img src="http://img823.imageshack.us/img823/5928/simplextranscriptslider.png" /&gt;&lt;br /&gt;&lt;br /&gt;In these pictures above ,I want to show posts in 'feature' category  into slider ,so I add category name 'feature' into widget content and  add the title 'feature' into widget title .&lt;br /&gt;&lt;br /&gt;10,Do the same with other widgets . Click on 'edit' link in a widget ,add a category name into widget content and add the title you want to show in widget title . Recent posts in this category will be shown in where the widget you choose is .&lt;br /&gt;&lt;br /&gt;For example ,I want to show posts under category 'Politic' in the position of widget 'top mid col' &lt;br /&gt;&lt;img src="http://img196.imageshack.us/img196/7936/simplextranscriptwidget.png" /&gt;&lt;br /&gt;First ,I click on 'edit' link in '&lt;b&gt;top mid col&lt;/b&gt;' &lt;br /&gt;&lt;img src="http://img138.imageshack.us/img138/7936/simplextranscriptwidget.png" /&gt;&lt;br /&gt;a dialog appeared .&lt;br /&gt;then ,I add the category name 'politic' into widget content ,and add the title I want to show 'POLITIC' into widget title . &lt;br /&gt;&lt;img src="http://img14.imageshack.us/img14/7936/simplextranscriptwidget.png" /&gt;&lt;br /&gt;After that ,click Save .&lt;br /&gt;&lt;br /&gt;If the category 'politic' existed in my blog ,and there is at least one post under category 'politic' ,it will be displayed in the position of 'top mid col' &lt;br /&gt;&lt;br /&gt;11,Do the same with the tab bar &lt;br /&gt;&lt;img src="http://img191.imageshack.us/img191/1109/simplextranscripttab.png" /&gt;&lt;br /&gt;For example ,I want to show posts under category 'cycling' in the position of tab number 1 in the tab bar &lt;br /&gt;First ,I click on 'edit' link in '&lt;b&gt;priBotTab1&lt;/b&gt;' &lt;br /&gt;&lt;img src="http://img641.imageshack.us/img641/4405/simplextranscripttab1.png" /&gt;&lt;br /&gt;&lt;br /&gt;a dialog appeared .&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img146.imageshack.us/img146/267/simplextranscripttab2.png" /&gt;&lt;br /&gt;&lt;br /&gt;then ,I add the category name 'cycling' into widget content ,and add the title I want to show 'Cycling' into widget title . &lt;br /&gt;&lt;br /&gt;After that ,click Save .&lt;br /&gt;&lt;br /&gt;The posts under "cycling" category will be shown in tab1 of the tab bar .&lt;br /&gt;&lt;br /&gt;12,In Page Element ,we can also setup widgets which will be shown in single page (post page)&lt;br /&gt;this is a single page&lt;br /&gt;&lt;img src="http://img600.imageshack.us/img600/4935/simplextranscriptsingle.png" /&gt;&lt;br /&gt;&lt;br /&gt;and this is widgets for a single page in page element&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img204.imageshack.us/img204/4935/simplextranscriptsingle.png" /&gt;&lt;br /&gt;&lt;br /&gt;In the single page ,post will be shown in the left-hand ,a narrow sidebar in the middle and a wide sidebar in the right .&lt;br /&gt;Narrow sidebar contain widgets : &lt;b&gt;Blog Archive,Label ,and Custom script&lt;/b&gt; .&lt;br /&gt;Wide Sidebar contain widgets : &lt;b&gt;Custom script ,Recent comment widesidebar ,recent post widesidebar,and Popular post&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;b&gt;You can't add more widget to these sidebars . But you can remove widget existed .&lt;/b&gt;&lt;/div&gt;&lt;div style="color: red;"&gt;&lt;b&gt; &lt;/b&gt;&lt;/div&gt;If you want to add any script to single page (like ad script,counter script ...) add them into Custom script widget content .&lt;br /&gt;Click edit link in Custom script widget&lt;br /&gt;Add script into widget content .&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img824.imageshack.us/img824/5816/simplextranscriptcustom.png" /&gt;&lt;br /&gt;&lt;br /&gt;13,To add a forum to blog,create a new page ,name it 'forum' and paste the forum embeded code into page content (in Edit HTML mode)&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img820.imageshack.us/img820/7224/blognewsembededforum.png" /&gt;&lt;br /&gt;&lt;br /&gt;then go to Dashboard -&amp;gt; Go to Design -&amp;gt; Edit HTML ,search for the text 'http://simplextranscript.blogspot.com/p/forum.html'&lt;br /&gt;&lt;br /&gt;and replace it with link to 'forum' page you've just created .There are 8 places need to change in total . After that ,save the changes .&lt;br /&gt;&lt;br /&gt;Here are places need to change 'http://simplextranscript.blogspot.com/p/forum.html' with the link to your forum page :&lt;br /&gt;&lt;br /&gt;&lt;i&gt;1st place :&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img840.imageshack.us/img840/1180/simplextranscriptforum.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;2nd place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img585.imageshack.us/img585/1567/simplextranscriptforum1.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;3rd place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img59.imageshack.us/img59/5122/simplextranscriptforum2.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;4th place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img19.imageshack.us/img19/5125/simplextranscriptforum3.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;5th place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img830.imageshack.us/img830/7606/simplextranscriptforum4.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;6th place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img218.imageshack.us/img218/9594/simplextranscriptforum5.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;7th place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img3.imageshack.us/img3/907/simplextranscriptforum6.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;8th place&lt;/i&gt;&lt;br /&gt;&lt;img src="http://img121.imageshack.us/img121/1071/simplextranscriptforum7.png" /&gt;&lt;br /&gt;&lt;br /&gt;That's all .Save template and you will see a full-width forum page .&lt;br /&gt;&lt;br /&gt;14,Lightbox effect has been integrated in this template&lt;br /&gt;&lt;br /&gt;To use Lightbox effect in your post ,when editing post ,click on Edit HTML .&lt;br /&gt;&lt;img height="384" src="http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s640/light-box-image-viewer-for-blogger.png" width="640" /&gt;&lt;br /&gt;To add lightbox effect for one image , use &lt;span id="summary3501621382436557553"&gt;&lt;span style="color: blue;"&gt;&lt;b&gt;&lt;span style="color: lime;"&gt;rel="lightbox" title="Your image Caption"&lt;/span&gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt; as picture above&lt;br /&gt;To add lightbox effect for multiple images , &lt;span id="summary3501621382436557553"&gt;use &lt;b style="color: lime;"&gt;rel="lightbox[albumname]" title="Your Image Caption"&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;if you want to add another image to this album,upload the second image and use   &lt;span style="color: blue;"&gt;&lt;b&gt;rel="lightbox[albumname]" title="Caption for Second image of albumname"&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span id="summary3501621382436557553" style="color: lime;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;in this case , lightbox will work like a &lt;span class="IL_AD" id="IL_AD1"&gt;gallery&lt;/span&gt; with next and previous links&amp;nbsp; and you can use keyboard to navigate through the album&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;That's all for this template .I hope it helpful to you&amp;nbsp; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-3664902306122814629?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/3664902306122814629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/02/simplex-transcript-blogspot-template.html#comment-form' title='98 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3664902306122814629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/3664902306122814629'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/02/simplex-transcript-blogspot-template.html' title='Simplex Transcript - renewed version'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s72-c/light-box-image-viewer-for-blogger.png' height='72' width='72'/><thr:total>98</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-4634615777878404592</id><published>2011-01-30T13:28:00.000+07:00</published><updated>2011-02-21T23:27:46.687+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>SimplexCelebrity renewed version</title><content type='html'>In this post ,I want to show you renewed version of my template Simplex Celebrity ,which is more easy to install ,bugs fixed ,loading faster ,a forum wide-page and SEO friendly .&lt;br /&gt;There are two template files for this version ,one with Disqus comment system and the other without .&lt;br /&gt;&lt;img src="http://img834.imageshack.us/img834/3555/fireshotcapture025simpl.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://simplexcelebs.blogspot.com/"&gt;Live Demo&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?91bx711iaqk86jg"&gt;Download SimplexCelebrity with Disqus&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?b7gh8xsgtsd300r"&gt;Download SimplexCelebrity without Disqus&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Here is steps for installing this template&lt;/h3&gt;&lt;br /&gt;1, Download template file from links above .Choose template file with Disqus comment system if you want to use Disqus ,or choose the other if not .&lt;br /&gt;&lt;br /&gt;2,If you choose template file with Disqus comment system ,open template file in a word editor such as Notepad ++ and find this block code :&lt;br /&gt;&lt;div style="color: red;"&gt;&lt;a href="http://www.blogger.com/goog_969861242"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="color: red;"&gt;&amp;lt;div id='disqus_thread'/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var disqus_shortname = &amp;amp;#39;&lt;b&gt;simplexcelebs&lt;/b&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // The following are highly recommended additional parameters. Remove the slashes in front to use.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // var disqus_identifier = &amp;amp;#39;unique_dynamic_id_1234&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // var disqus_url = &amp;amp;#39;http://example.com/permalink-to-page.html&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dsq = document.createElement(&amp;amp;#39;script&amp;amp;#39;); dsq.type = &amp;amp;#39;text/javascript&amp;amp;#39;; dsq.async = true;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dsq.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/embed.js&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (document.getElementsByTagName(&amp;amp;#39;head&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;body&amp;amp;#39;)[0]).appendChild(dsq);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; })();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;noscript&amp;gt;Please enable JavaScript to view the &amp;lt;a href='http://disqus.com/?ref_noscript'&amp;gt;comments powered by Disqus.&amp;lt;/a&amp;gt;&amp;lt;/noscript&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and this block&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var disqus_shortname = &amp;amp;#39;&lt;b&gt;simplexcelebs&lt;/b&gt;&amp;amp;#39;; // required: replace example with your forum shortname&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* * * DON&amp;amp;#39;T EDIT BELOW THIS LINE * * */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (function () {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var s = document.createElement(&amp;amp;#39;script&amp;amp;#39;); s.async = true;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s.type = &amp;amp;#39;text/javascript&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s.src = &amp;amp;#39;http://&amp;amp;#39; + disqus_shortname + &amp;amp;#39;.disqus.com/count.js&amp;amp;#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (document.getElementsByTagName(&amp;amp;#39;HEAD&amp;amp;#39;)[0] || document.getElementsByTagName(&amp;amp;#39;BODY&amp;amp;#39;)[0]).appendChild(s);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }());&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;change the text in bold "simplexcelebs" to your Disqus shortname .&lt;br /&gt;Save template ,and upload it to Blogger .&lt;br /&gt;&lt;br /&gt;3,Go to Blogger Dashboard -&amp;gt;Design-&amp;gt;Page Element .In this page ,you will see many widgets .&lt;br /&gt;&lt;br /&gt;4,To add logo to your blog&lt;br /&gt;&lt;img alt="simplexcelebrity add logo" src="http://img806.imageshack.us/img806/8603/simplexcelebslogo.png" /&gt;&lt;br /&gt;Click on logo widget&lt;br /&gt;&lt;img alt="simplexceblebrity add logo" src="http://img696.imageshack.us/img696/7896/simplexcelebslogo1.png" /&gt;&lt;br /&gt;and fill widget content with link to logo as what I did in image below&lt;br /&gt;&lt;img src="http://img40.imageshack.us/img40/4075/simplexcelebslogo2.png" /&gt;&lt;br /&gt;&lt;br /&gt;5,To add items to menu bar&lt;br /&gt;&lt;img src="http://img683.imageshack.us/img683/1673/simplexcelebsmenu.png" /&gt;&lt;br /&gt;&lt;br /&gt;click on edit link in menu bar widget&lt;br /&gt;&lt;img src="http://img11.imageshack.us/img11/2168/simplexcelebsmenu1.png" /&gt;&lt;br /&gt;and add link to categories in your blog as I did in the image&lt;br /&gt;&lt;img src="http://img141.imageshack.us/img141/1315/simplexcelebsmenu2.png" /&gt;&lt;br /&gt;&lt;br /&gt;Link to each category has structure : http://yourblog.blogspot.com/search/label/your category&lt;br /&gt;&lt;br /&gt;6,&lt;b&gt;'top ads','sidebarads'&lt;/b&gt;&lt;b&gt;&lt;/b&gt; are widgets for &lt;span class="IL_AD" id="IL_AD5"&gt;advertising&lt;/span&gt; . You can click on 'edit' link of these widgets and add the ad code into widget content . Like this&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img339.imageshack.us/img339/6363/blognewstopads1.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img43.imageshack.us/img43/9643/blognewstopads2.png" /&gt;&lt;br /&gt;&lt;br /&gt;7,To add content to slider&lt;br /&gt;&lt;img alt="simplexcelebrity slider" src="http://img833.imageshack.us/img833/9371/simplexcelebsfeaturesli.png" /&gt;&lt;br /&gt;click on edit link in "feature slider" widget&lt;br /&gt;&lt;img alt="simplexcelebrity slider" src="http://img233.imageshack.us/img233/9371/simplexcelebsfeaturesli.png" /&gt;&lt;br /&gt;write the title you want to show in widget title&lt;br /&gt;and write the name of category which you want to show in slider in widget content&lt;br /&gt;for example ,in the picture below ,I want to show content of category "feature" in slider ,so I add title "feature slider" into widget title and add category name "feature" into widget content . And recent posts from "feature" category will be shown in slider .&lt;br /&gt;&lt;img src="http://img401.imageshack.us/img401/9371/simplexcelebsfeaturesli.png" /&gt;&lt;br /&gt;&lt;br /&gt;8,Do the same with other widgets . Click on 'edit' link in a widget  ,add category name into widget content and add the title you want to  show in widget title . Recent posts in this category will be shown in  where the widget you choose is .&lt;br /&gt;for example ,I want to show posts in "music" in the position of widget "category box 2"&lt;br /&gt;&lt;br /&gt;First ,I click on edit link in "category box 2" widget&lt;br /&gt;&lt;img src="http://img69.imageshack.us/img69/2875/simplexcelebswidget1.png" /&gt;&lt;br /&gt;a dialog appeared . I add category name "music" into widget content ,and add "MUSIC" in the widget title&lt;br /&gt;&lt;img src="http://img402.imageshack.us/img402/4006/simplexcelebswidget2.png" /&gt;&lt;br /&gt;after that ,click Save .&lt;br /&gt;Here is what we have after editing :&lt;br /&gt;&lt;img src="http://img190.imageshack.us/img190/8575/simplexcelebswidget.png" /&gt;&lt;br /&gt;&lt;br /&gt;9,To add a forum to &lt;span class="IL_AD" id="IL_AD8"&gt;blog&lt;/span&gt;,create a new page ,name it 'forum' and paste the forum embeded code into page content (in Edit HTML mode)&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img820.imageshack.us/img820/7224/blognewsembededforum.png" /&gt;&lt;br /&gt;&lt;br /&gt;then go to Dashboard -&amp;gt; Go to Design -&amp;gt; Edit HTML ,search for the text&lt;br /&gt;'&lt;b&gt;http://simplexcelebs.blogspot.com/p/forum.html&lt;/b&gt;'&lt;br /&gt;you will find out these block code&amp;nbsp; :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;lt;b:if cond='data:blog.url != &amp;amp;quot;&lt;b&gt;http://simplexcelebs.blogspot.com/p/forum.html&lt;/b&gt;&amp;amp;quot;'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;b:section id='sidebar' class="widget1" showaddelement='yes'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;b:widget id='HTML14' locked='false' title='Subscribe' type='HTML'&amp;gt;&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;img src="http://img838.imageshack.us/img838/5264/simplexcelebsforum1.png" /&gt;&lt;br /&gt;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;b:if cond='data:blog.url != data:blog.homepageUrl'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;b:if cond='data:blog.url == &amp;amp;quot;&lt;b&gt;http://simplexcelebs.blogspot.com/p/forum.html&lt;/b&gt;&amp;amp;quot;'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="fullcontent"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;b:loop values='data:posts' var='post'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;img src="http://img145.imageshack.us/img145/442/simplexcelebsforum2.png" /&gt;&lt;br /&gt;Change "&lt;span style="color: red;"&gt;&lt;b&gt;http://simplexcelebs.blogspot.com/p/forum.html&lt;/b&gt;&lt;/span&gt;" to your forum page's url .&lt;br /&gt;&lt;br /&gt;10,Lightbox effect has been integrated in this template &lt;br /&gt;&lt;br /&gt;&lt;img alt="lightbox effect in Simplex Celebrity template" src="http://img814.imageshack.us/img814/1980/simplexcelebs.png" /&gt;&lt;br /&gt;&lt;br /&gt;To use Lightbox effect in your post ,when editing post ,click on Edit HTML .&lt;br /&gt;&lt;img height="384" src="http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s640/light-box-image-viewer-for-blogger.png" width="640" /&gt;&lt;br /&gt;To add lightbox effect for one image , use &lt;span id="summary3501621382436557553"&gt;&lt;span style="color: blue;"&gt;&lt;b&gt;&lt;span style="color: lime;"&gt;rel="lightbox" title="Your image Caption"&lt;/span&gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt; as picture above&lt;br /&gt;To add lightbox effect for multiple images , &lt;span id="summary3501621382436557553"&gt;use &lt;b style="color: lime;"&gt;rel="lightbox[albumname]" title="Your Image Caption"&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;if you want to add another image to this album,upload the second image and use   &lt;span style="color: blue;"&gt;&lt;b&gt;rel="lightbox[albumname]" title="Caption for Second image of albumname"&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span id="summary3501621382436557553" style="color: lime;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;in this case , lightbox will work like a &lt;span class="IL_AD" id="IL_AD1"&gt;gallery&lt;/span&gt; with next and previous links&amp;nbsp; and you can use keyboard to navigate through the album&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;That's all for this template .I hope you enjoy this version ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-4634615777878404592?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/4634615777878404592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/01/simplexcelebrity-blogger-template.html#comment-form' title='76 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4634615777878404592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/4634615777878404592'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/01/simplexcelebrity-blogger-template.html' title='SimplexCelebrity renewed version'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s72-c/light-box-image-viewer-for-blogger.png' height='72' width='72'/><thr:total>76</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-1202686396597791340</id><published>2011-01-27T21:05:00.000+07:00</published><updated>2011-01-27T21:06:09.696+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><title type='text'>Jquery Lightbox - another Solution for Lightbox effect in Blogger</title><content type='html'>In previous post on Lightbox effect (&lt;a href="http://simplexdesign.blogspot.com/2010/08/lightbox-really-working-script.html"&gt;Lightbox really working script&lt;/a&gt;) , I wrote about a script for Lightbox effect based on Scriptaculous (a Javascript framework) that work well in Blogger .&lt;br /&gt;But if your blog is using Jquery framework ,this Lightbox effect can't work because there's a conflict between Jquery and Scriptaculous .&lt;br /&gt;So here we have another solution that can be used in Blogger ,and of course ,it can be applied for all Simplex templates (included Simplex Celebrity ,Simplex Enews ...etc) .It's Jquery Lightbox&lt;br /&gt;&lt;br /&gt;&lt;img alt="lightbox effect in Simplex Celebrity template" src="http://img814.imageshack.us/img814/1980/simplexcelebs.png" /&gt;&lt;br /&gt;&lt;b&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://simplexcelebs.blogspot.com/2010/07/mel-gibsons-anti-semitic-threats.html"&gt;Demo in Simplex Celebrity template&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;How to install this script ?&lt;/h3&gt;&lt;br /&gt;1,Go to Blogger Dashboard ,Continue to Design tab ,then Edit HTML tab .&lt;br /&gt;&lt;br /&gt;2,Add this code right before &lt;span style="color: red;"&gt;&amp;lt;body&amp;gt;&lt;/span&gt; :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' type='text/javascript'/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;style type="text/css"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* jQuery lightBox plugin - Gallery style */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #gallery {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: #444;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 10px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; width: 520px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #gallery ul { list-style: none; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #gallery ul li { display: inline; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #gallery ul img {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; border: 5px solid #3e3e3e;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; border-width: 5px 5px 20px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #gallery ul a:hover img {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; border: 5px solid #fff;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; border-width: 5px 5px 20px;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; color: #fff;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #gallery ul a:hover { color: #fff; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script src="http://dinhquanghuy.110mb.com/lightbox/jquery.lightbox-0.5.js" type="text/javascript"/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;link href="http://dinhquanghuy.110mb.com/lightbox/jquery.lightbox-0.5.css" media="screen" rel="stylesheet" type="text/css"/&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;$(function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;$('a[rel*=lightbox]').lightBox();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="color: lime;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Save changes . You are done .&lt;br /&gt;&lt;h3&gt;How to use ?&lt;/h3&gt;To use Lightbox effect in your post ,when editing post ,click on Edit HTML .&lt;br /&gt;&lt;img height="384" src="http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s640/light-box-image-viewer-for-blogger.png" width="640" /&gt;&lt;br /&gt;To add lightbox effect for one image , use &lt;span id="summary3501621382436557553"&gt;&lt;span style="color: blue;"&gt;&lt;b&gt;&lt;span style="color: lime;"&gt;rel="lightbox" title="Your image Caption"&lt;/span&gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt; as picture above&lt;br /&gt;To add lightbox effect for multiple images , &lt;span id="summary3501621382436557553"&gt;use &lt;b style="color: lime;"&gt;rel="lightbox[albumname]" title="Your Image Caption"&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;if you want to add another image to this album,upload the second image and use   &lt;span style="color: blue;"&gt;&lt;b&gt;rel="lightbox[albumname]" title="Caption for Second image of albumname"&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span id="summary3501621382436557553" style="color: lime;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;in this case , lightbox will work like a &lt;span class="IL_AD" id="IL_AD1"&gt;gallery&lt;/span&gt; with next and previous links&amp;nbsp; and you can use keyboard to navigate through the album&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;That's all for Jquery Lightbox effect .&lt;/span&gt;&lt;br /&gt;&lt;span id="summary3501621382436557553"&gt;This post is for all of you ,who want to use Lightbox effect in Blogger , and specially for &lt;b&gt;naxoz-report&lt;/b&gt; and &lt;b&gt;DJ Remix Town&lt;/b&gt; ,who commented in my blog asked for Lightbox effect in Simplex Celebrity template . &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3261648057722628801-1202686396597791340?l=www.thesimplexdesign.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.thesimplexdesign.com/feeds/1202686396597791340/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.thesimplexdesign.com/2011/01/jquery-lightbox-working-in-blogger.html#comment-form' title='28 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1202686396597791340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3261648057722628801/posts/default/1202686396597791340'/><link rel='alternate' type='text/html' href='http://www.thesimplexdesign.com/2011/01/jquery-lightbox-working-in-blogger.html' title='Jquery Lightbox - another Solution for Lightbox effect in Blogger'/><author><name>nhamngahanh</name><uri>http://www.blogger.com/profile/08080334919882493830</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://1.bp.blogspot.com/_MsaNQZtvB5E/StANlDhWFgI/AAAAAAAAAKA/8p5PORokslI/S220/normal_HNH_9244-sapa0207.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_u4gySN2ZgqE/SnXDJjLrc6I/AAAAAAAAAlo/UpRbhjD0ZZ0/s72-c/light-box-image-viewer-for-blogger.png' height='72' width='72'/><thr:total>28</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3261648057722628801.post-494640594718416852</id><published>2011-01-24T23:55:00.000+07:00</published><updated>2011-02-03T22:19:41.119+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><title type='text'>Simplex Blognews - latest version - easy to install</title><content type='html'>Many people comment in my blog for reporting errors when installing and using template Simplex Blognews . Thanks you all for this . Without your error reporting and support ,I can't continue this work .&lt;br /&gt;In this post ,I want to introduce to you latest version of Blognews template which is easier to use and fixed some bugs .&lt;br /&gt;&lt;img src="http://img824.imageshack.us/img824/1633/fireshotcapture028simpl.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;&lt;a href="http://www.mediafire.com/?rfkgk0xh62w7dqk"&gt;Download Simplex Blognews with Disqus comment system&lt;/a&gt; | &lt;a href="http://www.mediafire.com/?yvzpcxk6w2jxcnv"&gt;Download Simplex Blognews with Blogger comment system&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;h3&gt;How to install this template&lt;/h3&gt;1,Download this template from one of two links above .If you want to use Disqus ,choose template file included Disqus and if you don't ,choose the file with Blogger default comment system&lt;br /&gt;&lt;br /&gt;2,Open template file in any word editor you have such as &lt;b&gt;notepad ++ &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;3,Here is code of main menu bar in template file :&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: red;"&gt; &amp;lt;ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href='&lt;b&gt;http://simplexblognews.blogspot.com&lt;/b&gt;'&amp;gt;&lt;b&gt;Home&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href='&lt;b&gt;http://simplexblognews.blogspot.com/search/label/world&lt;/b&gt;'&amp;gt;&lt;b&gt;World News&lt;/b&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;ul class='children'&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='#'&amp;gt;&lt;b&gt;Category&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/ul&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='http://simplexblognews.blogspot.com/search/label/travel'&amp;gt;Travel&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;li&amp;gt;&amp;lt;a href='&lt;b&gt;http://simplexblognews.blogspot.com/search/label/sports&lt;/b&gt;'&amp;gt;&lt;b&gt;Sports&lt;/b&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&l
