Read More or Expandable Post Summaries for Blogger Posts

November 12, 2008

This is one of the most popular hacks in Blogger. And it's very useful. And practical. In case you don't know what it is:
  • it makes your post appear just with short introduction (a teaser), followed by "Read More" link, which opens (or collapses) your full post
  • it's a great way to make your posts more exposed (especially older ones on the main page)
There are two ways of doing this:

1. "Read more" link that OPENS the full post (same way you click on the post title normally) - see the EXAMPLE HERE
2. "Read more" link that COLLAPSES full post on the main page (so you'll still be able to see the rest of the posts from the main page)...see the EXAMPLE HERE

1. "Read more" link that OPENS the full post (example)

First thing, back up your template. Then, go to:
DASHBOARD --> LAYOUT --> EDIT HTML, click on the EXPAND WIDGET TEMPLATES box in the upper right corner. Use CTRL + F and find the following code:

]]></b:skin>
</head>
Place the following code in orange in the middle, like this:
]]></b:skin>
<style>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if>
</style>
</head>
Next, find this part of code:
<data:post.body/>
...and place the code in orange below it, like this:
<data:post.body/>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<span style='font-weight:bold;'><span><a expr:href='data:post.url' target='_blank'>Read more!</a></span></span>
</b:if>
Save Template.
Now, how to apply those settings to our post? Look at the code below:
Your short introduction will be here
<span class="fullpost">
And the rest of your post here
</span>
...all you have to do is "surround" your text / pictures (in orange) with "span"...
Now, you can place "span" manually on every post you make.
Or you can make it appear every time you write a new post. You'll do that like this:
DASHBOARD ► SETTINGS ► FORMATTING, scroll down to the "Post Template" box, and place this code below:
Your short introduction will be here
<span class="fullpost">
And the rest of your post here
</span>
..Save Settings.
Now when you write a post, click on the EDIT HTML mode, and you'll have this:

..just place your content accordingly.

Ok. Little bit on styling. You can change the alignment of "Read more" by adding this to your code:
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<span style='float:right; font-weight:bold;'><span><a expr:href='data:post.url' target='_blank'>Read more!</a></span></span>
</b:if>
...we've changed the alignment to the right by adding style in orange. Text has a "bold" style, we can change that to "italic" or remove that style to keep "normal" text.
...we can change the font size of "Read more" and color too...add the code in blue...
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<span style='float:right; font-weight:bold;'><span><a expr:href='data:post.url' target='_blank'><font size="0" color="black">Read more!</font></a></span></span>
</b:if>
...change the number 0 to whatever size you want, and for the color, you can use hex values (#000000) or color names (from libraries)...

!IMPORTANT! - by default, "Read more" link opens a full post in a new tab. If you want it to open it in the same window, delete the orange part in your code....
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<span style='float:right; font-weight:bold;'><span><a expr:href='data:post.url' target='_blank'><font size="0" color="black">Read more!</font></a></span></span>
</b:if>
...Save Settings.

NOTE:
  • you'll have to edit old posts manually to apply "Read more" link in them....
  • you can change the text of a Read more link. In the code section, instead of Read more, you can write whatever....(like Continue reading, or See full post...)

The original hack from: hackosphere.com
Customized version: blogdoctor.me


2. "Read more" link that COLLAPSES full post (example)

This is much better way for post appearance. What does it do? It collapses you post on the same page (with a nice effect), without leading you to a individual post page. You can also "collapse it back".
But, this method will place a "Read more" in every post you've made! Which can be all right, but also can be a disadvantage. Choice is youurs...

Let's do it. Back up your template, then go to:

DASHBOARD ► LAYOUT ► EDIT HTML ► click on the EXPAND WIDGET TEMPLATES in the upper right corner. Using CTRL (Option) + F, find the following line of code:

</head>
...place the following code in orange ABOVE it, so it will look like this:
<script language='javascript' src='http://halotemplates.s3.amazonaws.com/jquery-truncator/jquery-1.2.3.pack.js' type='text/javascript'/>
<script language='javascript' src='http://halotemplates.s3.amazonaws.com/jquery-truncator/jquery.expander.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function() {

$('.excerpt').expander({
slicePoint: 280, // default is 100
expandText: '[...]', // default is 'read more...'
});

});
</script>

</head>
....next, find this part of code (it may look a bit different in your template):
<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
...DELETE it, and REPLACE it with this code:
<b:if cond='data:blog.pageType != "item"'>
<div class='excerpt post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
<b:else/>
<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
</b:if>
...and that's it!

NOTE:
  • you can change [...] into whatever you want. In the code (CSS part), just replace it with Read More (or anything you wish)..
  • use some different styles from Javascript below
This style uses the jQuery JavaScript library. There are different plug-ins for the script on here...

Thanks to BloggeBuster for tips.


Good luck and....Smile!


post signature

Face It! Tell Your Tweets Digg It! Add to Delicious Stumble Upon I Reddit! Mixx it Up! Add to Your Faves

114 comments:

wisefly said...

Great advice! Thanks!

pocket said...

Thanks for support, and if you'll have any problems, just ask....

Smile!

Sunny said...

Hey there - can you have a look at my blog? I must be doing something incorrectly, because it's putting the expandable brackets at the beginning of the post rather than showing a snippet then giving the option to expand. Blog address is www.thinkmotto.blogspot.com - any help would be appreciated!

pocket said...

::Sunny::

The problem is in your uploaded videos....The "expand" script is set to show certain "size" of introduction.
Just place some text ABOVE your video file....(you can CUT and PASTE video file wherever you want)

Smile!

Sunny Bonnell, Partner said...

Thank so much for the response. Is there any way to actually keep the movie visible? I'm wondering if the "read more" code might work better for what i'm trying to do. Any thoughts?

pocket said...

::Sunny::

There is a way. Find the following line of inserted code:

slicePoint: 280, // default is 100

...and increase value 280 (450, 500....whatever) until your video is visible. You've just expanded your "introduction" size...

Smile!

Sunny Bonnell, Partner said...

Pocket,

Got it. Now how do I actually change the brackets to say "Read More"

pocket said...

Good. For changing the brackets, find the following line:

expandText: '[...]', // default is 'read more...'

...now just replace [...] with Read More (or whatever else you want)
...do not delete quotation marks when you change the text

Smile!

adeq said...

how to make the brackets to the next row of the sentence?

pocket said...

Well, hard. Because it "breaks" your sentense automatically to 280 signs. (you can change this number - read the comments above).

You can try to fix it by adding <br></br> just where the brackets begins (while editing post).
Or wrapping the part that will be shown in paragraph:
<p> ----->put this on the beginning
</p> ----->this on the end
<br></br> ----->then, and place this...

Smile!

Mistirios said...

I don't understand.
I have to set manually which part will be hidden? (second method). I want it to be set automatically after 100 words...

pocket said...

Mistirios, in the example above, it's set to 280 letters...You can change this value in this part of the code:
slicePoint: 280, // default is 100

..change 280 into something else...you'll have to try it a few times, until you're satisfied...
Smile!

Mistirios said...

it doesn't work anyway!
:(
can i send you my template to have a look?

pocket said...

Yeah, all right...
pocket.ideas[at]gmail[dot]com

Dr.Swathi Pai said...

Is There any way i can use an expand collapse item as in your posts. That is after a few lines an expand collapse item , the followed by some more text ... You have used that in this post.

pocket said...

Hey Dr. Swathi....it's possible. I'm planning to make tutorial on this, but you have a good one here:
expand/collapse tutorial
Smile!

Jeff Fletcher said...

I want to have some posts (the long ones) use this, but others not use it. When I did this, I got the little "read more" link on all the posts, even the old ones?

pocket said...

For the second method, unfortunately, no. It will affect all of your posts.
Even though there is a COLLAPSE/EXPAND hack for certain parts of the post...like in this tutorial.
I'll write about that, but also google it...
Smile!

Jamie Henning said...

Pocket,

Can this function be applied to comments only? Those embedded beneath posts?

--Jamie

pocket said...

Jamie,
Yes it can. It's a different script though...I'll write about this, but you have a great tutorial here:
Peek-a-boo comments

Smile!

Zul Yussuf said...

Hello,

Seems like I cant find below part of code in my Template coding (I just using it btw):

div class=post-body entry-content
data:post.body
div style='clear: both;
clear for *photos floats
div

Can anyone help on which code I should replace (since I'm more interested with above setup no. 2 - "Read more" link that COLLAPSES full post.

My blog is http://zulyussuf.blogspot.com

Thank you!

pocket said...

You should contact the author of the template on this....Sorry.

Chris Gosling said...

Excellent - thank you very much, does more or less (!) what I want.

2 questions, please: one of my blogs has some posts which are videos only, no text - how can I remove "read more" from them?
Blogger seems to have an issue with me removing the target=_"blank" - any thoughts, please?

Blog is at www.caravanningnews.co.uk

pocket said...

Chris,

to remove the Read more link from certain posts, click on EDIT HTML tab (beside COMPOSE) when editing the post, and delete the following:

<span class="fullpost">
</span>

About target_blank. That's strange. It shouldn't give you a hard time. Be sure that you delete only:

target='_blank'

...do NOT delete any brackets > <

:]

Chris said...

Thanks for the fast response!

I've resolved the target thing - blogger didn't like me having two edit windows open!

The posts with the "read more" that I don't want don't have any html at all other than the Youtube embed code - the "read more" still appears after you've deleted the span class thing from other posts, too.

looks like the main code puts "read more" in every post, the span code in the post just says where it should go.

pocket said...

Chris,

unfortunately, Read more applies for every post...
But, here's a little trick to mask it (hide it). I notice that you have white background in your Blog. So, change the default code (in the post where you DO NOT want to show read more):

<span class="fullpost">
</span>

..into this:

<span class="fullpost"><span style="color:ffffff;">
</span>

...don't break the line. This will make your read more link white, and therefor, invisible..Buahaha!

Smile!

Matt King said...

Hey, everytime my blog is expanding, it inserts "undefined" at that text.. for example i'll post a snippet

"all of my exams for both semesters of my senior year of
college..[...Read more!!]undefinedeven"

wait... when i posted it here.. it suddenly says the read more part, but that's not visible on my blog.. any tips?

-Patrick

pocket said...

Matt King,

seems all right now...

Jay said...

This code seems to work fine for text. Thanks heaps.
However, I use an image in most of my posts (the smallest default one in blogger) but these are still the same (too big). Is there anyway I can change these to thumbnail size images but have them show up normal size when the post is expanded?

Thanks.

Jay said...

forget that last post. I just went in and changed the code manually. It's slow but it works.

I have noticed an even more annoying problem. The word "undefined" appears amongst the post text when I expand it. It seems that lots of people have been having this problem but no one has a solution.

godivarides said...

Hey Pocket!

You're tips are explained so concisely and precisely!

The code was already in my template, not on in the COMPOSE POST - activated it in there and also in the FORMATTING so it automatically popped up with each new post.

When I applied the code ... my page cut off - but showed no link to "continued". I checked the html in the COMPOSE POST section and the entire article was there. I removed the coding "span class - full post" and the original text reappeared.

I'm wondering if that "continued" which exists in the HTML page is set to the same colour as the bg? But I don't know what to look for, to check that.

thanks!

pocket said...

godivarides,

hm. weird. No, the color should be the same as the main Link color (if you used the code from this tut).
I suggest to remove the "hack" (the codes) from your HTML, and try again..
:|

Godiva Rides said...

Pocket :-)

I think the template is the problem - I was trying to implement your tips for the post comments on same page vs blogger window popup ... the line you stated to look for, doesn't exist in my HTML and the comments link goes nowhere!

I was hoping to avoid this, but, guess I'm going to have to back up everything and change templates yeck!

thanks for your excellent pointers!

You're the best :-)

pocket said...

Godiva Rides,

yup. you have a customized template, and it's always a different story....damn.
If you decide to change your template, it won't be hard, but I suggest to open a dummy Blog, and play with it a bit:
add some hack you'd like, make sure it satisfies you...

Thanks for support...
:]

Godiva Rides said...

Pocket

What is Graphic Design ... excellent piece!

Matt King said...

so pocket... or jay, have you figured out how to not make it say "undefined" after pressing read more?

Like, after my posted videos, after anything, it says "undefined" right there in the text...
Thanks!

LASIK Guider said...

Hi Pocket,

Your tips are great..

The code for "Read more" link that OPENS the full post works fine, but i want the post footer elements (labels,timestamps,..etc) to show up only in the full post page not in the main page after the summary.... as your sit..

Thanks!

pocket said...

Matt King,
..nope. Don't know. Sorry.

LASIK,
...the same answer: I don't know. Yet. I'm trying to accomplish this...If I find a way, you'll know..

:|

corey d said...

Hi, this seems so easy - - and it appears that others have been sucessful. Perhaps I'm doing something wrong....but when I follow your steps, nothing happens. literally. nothing on my blog changes at all. I have re-done it 5 times and still nothing happens when I preview or when I save my template and view. Any suggestions on what could be happening? I was trying to use the collapse version. (Sorry, I am not well-versed in HTML - - just starting off) Thanks a bunch!

pocket said...

corey d,

..it looks alright om my side? Still having troubles?
:|

fabricwrapper.com/blog said...

Pocket,
Is the code too long to post here? I am having trouble viewing source on my PC right now.
thanks!
Steph

pocket said...

Steph,

you mean for comments? Yes, that's not a good idea...Rather email me...
:|

blogtrix said...

please once visit my blog at
bloggertrixntips.blogspot.com

here i have used your above read more code,but as u can observe that few of my posts show more space between post summary and read more! and also in my few posts its not working ,plz chk older posts for them it is not working

pocket said...

blogtrix,

..this hack is for Main-page only...Your older posts (the ones that are not on your main page anymore) will not have a summary.
..to get rid of the blank space, try "stick" your codes closer to each other (in EDIT HTML mode)
...

blogtrix said...

thanks 4 ur help,but for few of my old posts its working

Ummie said...

mine is not working....
i wonder why cause my template seems slightly different than ur example....
can u check it for me?
i will send it to pocket.ideas[at]gmail[dot]com?

pocket said...

Ummie,

..if you've tried everything from the tutorial above, then there's nothing more I can do...Sorry. Peeking at your code won't make a difference...
:[

the_young_dude said...

Hi ! I sent you an email, but I'm not sure you got it. I've tried to use your piece of code many, many times, but every time I get this glitch : like many others, it shows "undefined" before the expanded text, or the "read more" chops off a section of the text to hide... do you know why ?
thank you for your amazing blog !

pocket said...

young dude,

...sorry..I still don't have a cure for this one...
:[

CASPER said...

how to put the readmore text in the right or left post.

Phil Maggitti said...

Help. I can find "data:post.body/" in my Minima template, so I can't do the "Read More" customization.

Phil Maggitti said...

Signals off, I forgot to expand the widgets. After I had done that, I found the code I could not find before. I have another problem now, however.

The first few lines of a post rather than the title of the post have begun showing up in the previous-posts gadget. How do I fix this?

Previously on the Bus

* ▼ 2009 (8)
o ▼ March (8)
+ WASHINGTON, D.C. – China’s largest condom manufact...

the_young_dude said...

thanks anyway, I linked to your awesome blog!

Phil Maggitti said...

Is there any way to move the Read More link closer to the teaser paragraph? The link doesn't have to follow right after the period in the last sentence of the paragraph, but having the link on the next line would be nice. If you have a quick look at my site, you will see what I mean. Thank you.

Thanks also to The Young Dude for linking to my blog, when I figure out how to do that, I'll return the compliment.

Phil Maggitti said...

Did I miss the answer to this previous question:

"The code for "Read more" link that OPENS the full post works fine, but i want the post footer elements (labels,timestamps,..etc) to show up only in the full post page not in the main page after the summary.... as your sit.."

pocket said...

► CASPER,
..by adding float:right; to the script...Read the tut again, it's explained..

► Phil,
...no you did not miss it. I just don't know how to do that...

► Young dude,
..thanks!

Rafay Baloch said...

HEy wen ever i perform this hack....it diappears widgets frommy homepage
www.rafayhackingarticles.blogspot.com

Swashata said...

Hey Pocket! I was able to use the jQuery both expandable and open in new link [From bloggerbuster] keeping all my widgets safe! I do write loads of JS and I know something about jQuery also! But this will tremendously slow down the loading! :( So I decided not to use it! May be some better advanced jQuery will save our life :)

thriftalina said...

Am I the only one who can't seem to get the link to align right?
I have entered your code in as many places as possible trying, and nothing gets my link over to the right side, any help?

thriftalina said...

I tried both and I cant get them to look the way I want. I know I am going to post differently each time and I really didnt want to have to edit each one. I love your site and thank you so much pocket for all your awesome tutorials.

kanchi said...

Hi pocket,
I need ur help I want to categorize the blog posts
I tried it by creating one post under particular category with old date,added links of all posts under that category upto here its ok but as I explore through archive it is showing categry post too.Could u tell me another way of categorizing the posts?
Thanks!

ralunger said...

Just want to ask how to make the "read more" link appear right after the summary post?

example:

"blah blah blah...Read more!"

like the one above.

ralunger said...

if you can email me the answer to the above question, pls.

ralunger@gmail.com

Calvin said...

http://snapshot-eloquence.blogspot.com/

I need a bit of help - can't find < data:post.body/ >' in my template.. does it mean I can't use my current template?

pocket said...

Calvin,

...you've ticked the box beside Expand widget templates in LAYOUT ► EDIT HTML?

..also try to locate only data:post.body..

Rica said...

How can I apply this to my recent posts? Is there a way to edit them and apply the collapse method?

Rica said...

Also, sorry, I decided to go with the first method but even though my posts don't need to be summarized, the link is still there. I took the code out of formatting, even edited all the posts that didn't need it and yet, it's still there.

I know that it's because of the code on the EDIT HTML box but is there a way to actually fix this? It's pretty annoying :(

Swashata said...

Hi pocket! I have ultimately set my mind to use read more hack! Thanks to your tut :) I have added both open on the parent window and on a new window on the expandable hack and instead of using the font tag I have used CSS to customize the read more link

Swashata said...

@ Pocket

for Phil's problem I have a cure! See that the links, author comments are wrapped in a div having class comment-footer-1 or something! I have just added another class to that div and used the css to display:none for non item pages and display: inline for item pages! Please visit my blog! greenTechspotI am sure u will figure it out :)

Somewhere said...

Thanks for the great tutorial, I used the second option and as expected the full post doesn't show up on the main page. Now I need your help ... is there a remedy or trick on the second option to show the beginning part of the post (like post teaser)and when clicking on the read more option the rest will also show on the same window like above? Thanks.

Somewhere said...

Never mind my previous questions I already fixed it.

To those who got the 'undefined' errors try to delete complicated format codes inside the post or try to post using edit html mode. I hope it helps.

Anyway I really like this hack ... and this works well on my blog. Thanks again.

SQT said...

Great hack, but I'm having the "undefined" problem too.... Stinks. I'd like to use this one.

cayataro?! said...

hi..how to make the word at right?
i means float..
thanx!

Fadzrul Hisyam said...
This comment has been removed by the author.
Fadzrul Hisyam said...

Some apostrophes (') changed to other code type like this:
&(ampersand)#39;(semicolon)

in this part:
$('.excerpt').expander({
slicePoint: 280, // default is 100
expandText: '[Baca lagi...]', // default is 'read more...'
});

Do you have any idea for this problem?

Adrian said...

Hey guys, for those of you who have the "undefined" problem, there is a alternative way to solve the problem!!! Here is how:
http://groups.google.com/group/blogger-help/web/expandable-post-summaries-using-javascript?pli=1

Also you can see It in action in my blog here:
htt[//themindtunnel.blogspot.com

مستر مطوع said...

Adrian

THank you
THank you
THank youooooo

finally . i it's works now

by this way
http://groups.google.com/group/blogger-help/web/expandable-post-summaries-using-javascript?pli=1

THank you

i really liked your blog it's the easiest interface and sooo friendly

^_^ << which mean smile

Muhajababe said...

hi pocket;
how did you add the "continue reading.jpg" instead of the default font??

Sandra Austoni said...

THANK YOU so much...
I finally succeed in creating my "Read More".
Your instruction were really clear!

http://sandra-austoni.blogspot.com/

TorreyLisa said...

Hi Pocket,

I echo what Muhajababe asked...how do you add the "continue reading.jpg" in the script?

Also, I am still not able to figure out how to fix the "undefined" text that appears after clicking the "more..." link. I checked out the link: http://groups.google.com/group/blogger-help/web/expandable-post-summaries-using-javascript?pli=1
and I just can't seem to "get" what I need to do to convert the code.

If anyone has other suggestions, I'd love to hear them.

Thanks again!

Japanese Doll said...

Hi, I just need a minor help, what should I do when typing my post to make sure that when it is condensed the last letter/fullstop of the first paragraph doesn't stick to the the first letter of the following para?

i.e. my post is as follows

Para 1 yadda yadda. Yadda Yadda Yadda. Yadda Yadda.

Para 2 Yadda Yadda. Blah blah blah blah. Blah blah.

When it condenses, they appear like this.

Para 1 yadda yadda. Yadda Yadda Yadda. Yadda Yadda.Para 2 Yadda...

I want there to be a space between the fullstop and Para 2.

Thanks!

David Ricks said...

is there a way to make the [...] text bold?

JMH said...

I third this:

"how do you add the "continue reading.jpg" in the script?"

JMH said...

Found it! http://techquest.today.com/2008/11/09/add-a-read-more-iconimage-for-blogspot/

formula1dp said...

I can't find the "data:post.body/". Can you help me? I already tried Ctrl+F but it doesn't work...

katya saurus said...

thankiiiiesssss, i've found the web that share a tutorial like this, but... there's something wrong with the code... and i'm mad why that code not so eazy like this? hahah nice tutorial! love you honey haha

husker said...

this blog helped me a lot, thanks

Petz Teri said...

Dear Pocket! Thanks a million for the great help!

Petz Teri said...

Dear Pocket,
I noticed a few problems creeping in and hoped you could help me resolve them. 1 On older posts I can not find any code when I get into editing the post and click on the HTML tab and I don't need the read more option. What do I do? 2 On short text the read more is there but no codes when I click on the HTML tab. What do I do there? 3 I had an old sound file posted from archive.org. After I changed my template to Read more the file disapeared. What do I do there? Thanks

TBA Girl said...

Hi - I tried using the second method and the code worked fine and I could adjust the cut off, but I had the same issue with the word "undefined" popping up in the text. Any solution found for this yet?

t4-trix said...

hey ,check now blogger has this feature

Jaylyn Photography said...

Thank you so much! I literally read 6 different blogs before I found yours. And yours actually worked!!

http://jaylynphotography.blogspot.com/

Growling Maniac said...

I tried this in my site. it worked fine, for a while....but now, its stopped working. I tried the second method (collapsible post). Please help.

www.growling-maniac.co.cc

CNBLUESGFCAdmin said...

hi there. thanks for the code!
it works, but when i expand, there will be this excess word "undefined" just after the cut. how can i remove the word?
also, how do i shift the "click here to expand" one line down so that it does not appear awkward beside the cut text?
please visit http://cnbluesgfc.blogspot.com/ to know more about my problem.
THANKS!

pocket said...

CNBLUESGFCAdmin,

maybe it's better to use the New Blogger "Read more" feature. Read about it here:

Read more feature in Blogger

Smile!

CNBLUESGFCAdmin said...

thanks a lot! but it is more troublesome since i have to insert a page break manually everytime..
is there rlly no solution to the "undefined" problem?

BloggerGeeze | Blogging Tutorials said...

I have created a friendly tutorial for Blogger expandable post summary, it is new functionality added to the blogger editor. You can head on to this link article: New Expandable Post Summary from new Blogger Editor

neth said...

thanks you so much! it worked for my blog, luv yah!

Pankaj D.C said...
This comment has been removed by the author.
Pankaj D.C said...

dude it isnt working i did just wot u hav said..pls help out...http://pankajdc.blogspot.com

Nabihah said...

i have questin or the 2nd method..
Erm,it's just that code?? i mean.. no need repeat the above step?? coz i can't do it..

Praveen said...

This is the best way of doing this as far as I know. Check this out:
http://praveenbattula.blogspot.com/2010/06/read-more-link-to-blogger-posts-without.html

Désirée said...

hello! I tried both methods and it just doesn't work..I really don't know what to do now.. is there a way you could take a look at my template! that would be great!! best regards

Queer English said...

WOw! Thank you so much. My blog looks different.

mbt shoes said...

Do you like MBT shoes online MBT chapa buy it MBT chapa shoes with MBT lami free MBT lami shoes shipping MBT kaya over MBT kaya shoes us,we MBT M.Walk sell MBT m walk shoes on line mbt men shoes for mbt women shoes and vibram five fingers sale vibram five fingers sale is our discount vibram five fingers best cheap vibram five fingers choice cheap MBT chapa shoes thank cheap MBT lami to cheap MBT lami shoes see cheap MBT kaya it cheap MBT kaya shoes you can cheap MBT M.Walk go cheap MBT m walk shoes by cheap mbt men shoes click cheap mbt women shoes

Business Inquirer said...

i love it, thanks i found your blog, such a great info..keep up the good work..i will give you big hug and kisses..for your success..God bless..(",)

Anonymous said...

thank you so much ..here is the result..

http://makemoneyonlinestudy.blogspot.com/

thanks for this great article..you are such a wonderful blogger..great job!!!

HNF said...

Thx a lot =) ure the best! www.fash-un-able.blogspot.com has never looked better =)

andy said...

Hi, I tried to use the read more link with collapses full post but its not working, does it only work on new posts, or do i have to edit all my old post to have the read more link and collapse full post function.

Please check my site to review whats wrong with it.
Thank you.

Live cricket said...

Thanks a lot. This is exactly what I needed for my blog

EK said...

thanks for the tutorial, and for writing this blog! You have awesome advice that even newbies can follow!

Casper Fitzhue said...

Amazing blog, taught me in an hour what I'd been trying to do for two weeks. So SO SO SO grateful! The only thing that does not appear to be working is the collapsable post thingie. My blog is http://darkdarksickstuff.blogspot.com
Could you please have a look and tell me where it went wrong? I'm *this* close to finalising the layout and working with content, just need this to work. Thank you!

make free money online said...

thanks for this tut. i have applied it to my blog and it works!!!

browse free with your phone said...

thanks a lot for this.

Say it...

Related Posts with Thumbnails