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

<channel>
	<title>Blogger Trick &#124; Blogger Template &#124; BloggerTrick.com &#187; Blog Writing Tips</title>
	<atom:link href="http://www.bloggertrick.com/category/blog-writing-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bloggertrick.com</link>
	<description>Offers blogger templates, downloads, the latest features and news.</description>
	<lastBuildDate>Thu, 02 Jul 2009 08:25:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to create expandable post summaries or Read more on Classic template</title>
		<link>http://www.bloggertrick.com/how-to-create-expandable-post-summaries-or-read-more-on-classic-template</link>
		<comments>http://www.bloggertrick.com/how-to-create-expandable-post-summaries-or-read-more-on-classic-template#comments</comments>
		<pubDate>Wed, 03 Dec 2008 11:32:32 +0000</pubDate>
		<dc:creator>bloggertrick.com</dc:creator>
				<category><![CDATA[Blog Writing Tips]]></category>
		<category><![CDATA[Blogger Directories Submit]]></category>
		<category><![CDATA[Blogger Meta Tag Trick]]></category>
		<category><![CDATA[Blogger Template trick]]></category>
		<category><![CDATA[Blogger embed]]></category>
		<category><![CDATA[blogger posting]]></category>
		<category><![CDATA[Read More on Blog]]></category>

		<guid isPermaLink="false">http://bloggertrick.com/?p=321</guid>
		<description><![CDATA[D&#8217; you want to know &#8220;How to create expandable post summaries or Create Read more on Blogger Classic template&#8221; ??
Ok, i&#8217;ll give and share trick and tutorials about it, and of Course this article taken from :
http://help.blogger.com/bin/answer.py?answer=42215&#38;ctx=sibling


This article also Special for:
&#8221; How about one that works for old layout blogger?
Secretista / December 3rd, 2008, 5:14 [...]]]></description>
			<content:encoded><![CDATA[<p>D&#8217; you want to know &#8220;How to create expandable post summaries or Create Read more on Blogger Classic template&#8221; ??</p>
<p>Ok, i&#8217;ll give and share trick and tutorials about it, and of Course this article taken from :</p>
<p><span style="color: #ff00ff;"><em><a title="how to create read more on blogger classic template" href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling" target="_blank">http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling</a></em></span><span id="more-321"></span></p>
<div id="comment-388" class="comment">
<div class="comment-body clearfix">
<p>This article also Special for:</p>
<blockquote><p>&#8221; How about one that works for old layout blogger?</p>
<p class="comment-meta"><a rel="external nofollow" href="http://www.secretista.com/">Secretista</a> / December 3rd, 2008, 5:14 am&#8221;.</p>
</blockquote>
</div>
</div>
<p>She Asked About &#8220;How to create expandable post summaries or how to create Read more on Blogger Classic template.</p>
<p>Ok, Lets Begin&#8230;</p>
<p>Simple Answer is :</p>
<ul>
<li> Add <span> tags to your posts to mark which parts you want hidden in the summary version.</span></li>
<li>Add CSS declarations to your template to hide those sections on the index and archive pages, but not on post pages.</li>
</ul>
<p>Detail Answer is :</p>
<p>With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you&#8217;ll need to have <a href="http://help.blogger.com/bin/answer.py?answer=42049">post pages</a> enabled in order to make this feature work.</p>
<p>There are three ingredients that go into this feature: conditional CSS, a &#8220;read more&#8221; link for each post, and a modification for the posts that use this feature. So let&#8217;s go through it step by step.</p>
<h4>Conditional CSS</h4>
<p>We&#8217;re going to use conditional tags to change how posts display on different pages. Add the following code to your style sheet, depending on what kind of template you have:</p>
<p>(for classic templates)</p>
<pre>&lt;MainOrArchivePage&gt;
   span.fullpost {display:none;}
&lt;/MainOrArchivePage&gt;

&lt;ItemPage&gt;
   span.fullpost {display:inline;}
&lt;/ItemPage&gt;</pre>
<p>(for layouts)</p>
<pre>&lt;b:if cond='data:blog.pageType == "item"'&gt;
   span.fullpost {display:inline;}
&lt;b:else/&gt;
   span.fullpost {display:none;}
&lt;/b:if&gt;</pre>
<p>Your style sheet is usually near the top of your template, between the <code>&lt;style&gt;</code> and <code>&lt;/style&gt;</code> tags. If you have your style sheet in a separate file, you&#8217;ll still need to add these lines in your template, so the conditional tags will work. Just make sure you add in the <code>&lt;style&gt;</code> tags around them.</p>
<p>What we did here was to define a class called &#8220;fullpost&#8221; that will appear only on post pages (permalinks). Part of each post will use this class, as we&#8217;ll see later.</p>
<h4>&#8220;Read More&#8221; Links</h4>
<p>Add the following code to your template, somewhere after the <code>&lt;$BlogItemBody$&gt;</code> or <code>&lt;data:post.body/&gt;</code> tag:</p>
<p>(for classic templates)</p>
<pre><code>&lt;MainOrArchivePage&gt;&lt;br /&gt;
   &lt;a href="&lt;$BlogItemPermalinkURL$&gt;"&gt;Read more!&lt;/a&gt;
&lt;/MainOrArchivePage&gt;</code></pre>
<p>(for layouts)</p>
<pre><code>&lt;b:if cond='data:blog.pageType != "item"'&gt;&lt;br /&gt;
   &lt;a expr:href='data:post.url'&gt;Read more!&lt;/a&gt;
&lt;/b:if&gt;</code></pre>
<p>This link will only appear on the main page and archive pages, and it will redirect your reader to the post page containing the full text of your post. You can replace the &#8220;Read more!&#8221; text with whatever you like, of course.</p>
<h4>Post Modifications</h4>
<p>The final piece that we need is a little bit of code in your actual post. Each post that you want to use this feature on will need this code:</p>
<p><code>&lt;span class="fullpost"&gt;&lt;/span&gt;</code></p>
<p>This part can actually go in the <a href="http://help.blogger.com/bin/answer.py?answer=41401">post template</a>, if you don&#8217;t want to have to type it for each post. You&#8217;ll enter the summary text outside the span tags and the remainder inside, like so:</p>
<p><code>Here is the beginning of my post. &lt;span class="fullpost"&gt;And here is the rest of it.&lt;/span&gt;</code></p>
<p>Now, when a reader visits your blog, this post will appear like this:</p>
<blockquote><p>Here is the beginning of my post.<br />
<a href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling">Read more!</a></p></blockquote>
<p>When they click the link, they&#8217;ll go to the post page where they&#8217;ll see the whole thing:</p>
<blockquote><p>Here is the beginning of my post. And here is the rest of it.</p></blockquote>
<p><strong>Notes:</strong></p>
<ul>
<li>As with any template modifications, you should be sure to save a backup copy of your template before you start. Just copy and paste all your code to a text file on your hard drive, so you&#8217;ll have it there as a replacement in case anything goes wrong.</li>
<li>An alternative to creating post excerpts like this is to use the <a href="http://help.blogger.com/bin/answer.py?answer=42214">show/hide method</a> on entire posts. Each method has its own advantages and disadvantages.</li>
<li>Advantages to this method: Customizable summaries, rather than titles only. Can be applied to some posts and not others (for instance, you might only want this for your longer posts).</li>
<li>Disadvantages: Requires changes to the posts themselves, rather than to the template only. However, the &#8220;read more&#8221; link is in the template, so it will appear regardless of whether a post has been truncated or not. (Modifying this feature is left as an exercise for the reader.)</li>
</ul>
<p><strong><span style="color: #ff0000;">NOTES..!! :</span></strong></p>
<ul>
<li> This Artcle is taken from <a title="How to create expandable post summaries or Read more on Classic template" href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling" target="_blank">http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling<br />
</a></li>
<li>Click this link if you want to Read the originally content or article <strong><a title="How to create expandable post summaries or Read more on Classic template" href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling" target="_blank">How to create expandable post summaries or Create Read more on Classic template.</a></strong></li>
<li>Thanks very much to <a href="http://blogger.com" target="_blank"><strong>Blogger</strong></a> caused give us more solutions !!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bloggertrick.com/how-to-create-expandable-post-summaries-or-read-more-on-classic-template/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Trick To Create Read More On Blogger</title>
		<link>http://www.bloggertrick.com/trick-to-create-read-more-on-blogger</link>
		<comments>http://www.bloggertrick.com/trick-to-create-read-more-on-blogger#comments</comments>
		<pubDate>Sun, 02 Nov 2008 07:18:19 +0000</pubDate>
		<dc:creator>bloggertrick.com</dc:creator>
				<category><![CDATA[Blog Writing Tips]]></category>
		<category><![CDATA[More Blogger Trick]]></category>
		<category><![CDATA[blogger posting]]></category>
		<category><![CDATA[Read More on Blog]]></category>

		<guid isPermaLink="false">http://bloggertrick.com/?p=266</guid>
		<description><![CDATA[if you have a long post content, your blog will opened more long time, it make lost Visitor. But, this Problem can be Tricked wtih create  &#8220;Read More&#8221; Link on your Blog. Here is Trick To Create Read More On Blogger

1. You have to Login to blogger, then chose Layouts &#8211;&#62; Edit HTML
2. Click on [...]]]></description>
			<content:encoded><![CDATA[<p>if you have a long post content, your blog will opened more long time, it make lost Visitor. But, this Problem can be Tricked wtih create  &#8220;<strong>Read More</strong>&#8221; Link on your Blog. Here is <strong>Trick To Create Read More On Blogger</strong><span id="more-266"></span></p>
<p><span class="fullpost"><br />
1. You have to Login to blogger, then chose <strong>Layouts &#8211;&gt; Edit HTML</strong><br />
2. Click on &#8220;Expand Widgets Template&#8221; checkbox.<br />
3. Find the code below in your HTML Codes. ( the short way to find is by copy the code below then press &#8220;Ctrl + F&#8221; then paste in the box)</p>
<p class="alert"><span style="color: #ff0000;">&lt;div class=&#8217;post-header-line-1&#8242;/&gt;<br />
&lt;div class=&#8217;post-body&#8217;&gt;</span></p>
<p>or
</p>
<p class="alert"><span style="color: #ff0000;">&lt;div class=&#8217;post-header-line-1&#8242;/&gt;<br />
&lt;div class=&#8217;post-body entry-content&#8217;&gt;</span></p>
<p>4. If you have found it, put the code below under the above code.
</p>
<p class="alert"><span style="color: #0000ff;">&lt;b:if cond=&#8217;data:blog.pageType == &#8220;item&#8221;&#8216;&gt;<br />
&lt;style&gt;.fullpost{display:inline;}&lt;/style&gt;<br />
&lt;p&gt;&lt;data:post.body/&gt;&lt;/p&gt;<br />
&lt;b:else/&gt;<br />
&lt;style&gt;.fullpost{display:none;}&lt;/style&gt;</span></p>
<p>5. Under the code, you will find code like this</p>
<p><span style="color: #ff0000;">&lt;p&gt;&lt;data:post.body/&gt;&lt;/p&gt;</span> you have to put the code below under it.
</p>
<p class="alert"><span style="color: #0000ff;"><br />
&lt;a expr:href=&#8217;data:post.url&#8217;&gt;Read  More&#8230;&#8230;&lt;/a&gt;<br />
&lt;/b:if&gt;</span></p>
<p>6. You can change the &#8220;Read More&#8221; text with other.<br />
7. Save your job.<br />
8. Go to <strong>Setting &#8211;&gt; Formatting</strong> Tab menu<br />
9. At the lower page you will found &#8220;text area&#8221; box beside text &#8220;Post Template&#8221;<br />
10. Put the code below to the box
</p>
<p class="alert"><span style="color: #0000ff;"><br />
&lt;span class=&#8221;fullpost&#8221;&gt;&lt;/span&gt;</p>
<p></span></p>
<p>11. Then click Save the setting.<br />
12. If you want to post, put your short post or description above this code <span style="color: #0000ff;">&lt;span class=&#8221;fullpost&#8221;&gt;</span>,  and the next or full post put between <span style="color: #0000ff;">&lt;span class=&#8221;fullpost&#8221;&gt;</span> and <span style="color: #0000ff;">&lt;/span&gt;</span> code.</p>
<p>Out Source for Trick To Create Read More On Blogger</p>
<ul>
<li><a title="how to making read more on Blog" href="http://trick-blog.blogspot.com/2008/01/how-to-create-read-more.html " target="_blank"><span style="color: #ff00ff;">How to create read more blogger</span></a></li>
</ul>
<ul>
<li><a title="read more on Blogger" href="https://www.blogcatalog.com/topic/tips+'n+trick+blogger/" target="_blank"><span style="color: #ff00ff;">Trick to create Read more on blog</span></a></li>
</ul>
<ul>
<li><a title="Trick to show Read more on Blog" href="http://udung.blogspot.com/2005/04/readmore-tricks.html " target="_blank"><span style="color: #ff00ff;">Read More Tricks</span></a></li>
</ul>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloggertrick.com/trick-to-create-read-more-on-blogger/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>More Kinds Of Content For Your Niche Blog</title>
		<link>http://www.bloggertrick.com/more-kinds-of-content-for-your-niche-blog</link>
		<comments>http://www.bloggertrick.com/more-kinds-of-content-for-your-niche-blog#comments</comments>
		<pubDate>Wed, 29 Oct 2008 13:17:40 +0000</pubDate>
		<dc:creator>bloggertrick.com</dc:creator>
				<category><![CDATA[Blog Writing Tips]]></category>
		<category><![CDATA[Blogger Tips]]></category>
		<category><![CDATA[Blogger Content]]></category>
		<category><![CDATA[Niche Blog Content]]></category>

		<guid isPermaLink="false">http://bloggertrick.com/?p=260</guid>
		<description><![CDATA[In the antecedent column we talked about application the account as agreeable for your alcove blog. It absolutely is a acceptable way to appear up with agreeable as you can never absolutely run out of account – something new happens anniversary and every day. Are there added means you can appear up with agreeable for [...]]]></description>
			<content:encoded><![CDATA[<p>In the antecedent column we talked about application the account as agreeable for your alcove blog. It absolutely is a acceptable way to appear up with agreeable as you can never absolutely run out of account – something new happens anniversary and every day. Are there added means you can appear up with agreeable for your alcove blog? Of course! Here are some added account that you can plan with.<span id="more-260"></span></p>
<p>Link posts</p>
<p>The name itself gives you a appealing acceptable abstraction of the attributes of this affectionate of post. What you do with a hotlink column – or speedlinking, as some like to alarm it – is to accumulate a agglomeration of online writing or blog posts which are accompanying to your niche. You again account these links in your post. As you can see, it is simpler than account blogging. I alone do not like application this affectionate of column a lot, though, as I anticipate that the blogger should column added focused content, which is not absolutely accomplished by alone announcement links.</p>
<p>Photo or video posts</p>
<p>This affectionate of post, I absolutely like. Admitting I advance authoritative the a lot of out of visuals by consistently including them in your posts, you can aswell use photos or videos as your capital focus for a post. This is abundant if you run beyond a awful accordant photo or video. You can again put that in your column and again address your thoughts about it. You can address beneath words but still absorb the appulse of the column due to the clear element.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloggertrick.com/more-kinds-of-content-for-your-niche-blog/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Driver for Blogging ;)</title>
		<link>http://www.bloggertrick.com/driver-for-blogging</link>
		<comments>http://www.bloggertrick.com/driver-for-blogging#comments</comments>
		<pubDate>Tue, 04 Mar 2008 06:43:51 +0000</pubDate>
		<dc:creator>user100</dc:creator>
				<category><![CDATA[Blog Writing Tips]]></category>

		<guid isPermaLink="false">http://bloggertrick.com/?p=495</guid>
		<description><![CDATA[Yesterday, my Notebook is Error caused exposed to the virus under the same usb friend
after that I finally decided to format the Operating system due virusnya very violent.
This event make I can&#8217;t do blogging and create new article.

After the operating system already installed, I get problem again that is more driver Laptops and I lost [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, my Notebook is Error caused exposed to the virus under the same usb friend</p>
<p>after that I finally decided to format the Operating system due virusnya very violent.</p>
<p>This event make I can&#8217;t do blogging and create new article.</p>
<p><span id="more-495"></span></p>
<p>After the operating system already installed, I get problem again that is more driver Laptops and I lost the printer driver, I have to borrow a friend, but he does not have it.</p>
<p>and he just suggested to search for <a href="http://www.driverssoftware.com/" target="_blank">Acer drivers</a> (for all hardware devices on my notebook), <a href="http://www.driverssoftware.com/" target="_blank">ATI drivers</a> (VGA driver for my notebook), and the <a href="http://www.driverssoftware.com/" target="_blank">epson drivers</a> (for my Epson printer driver) to the Internet only.</p>
<p>finally my notebook normal again, So I can do activities and resume blogging again <img src='http://www.bloggertrick.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloggertrick.com/driver-for-blogging/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
