Remove "Read More" from one blog entry?

The title says it all. I would like to remove “Read More…” from the summary of only one blog post. Is this possible? Thank you!

This seems to work. Put it in the CSS box in Page Inspector.

.blog-read-more {
	display: none;
}

As with all my CSS code this comes with the disclaimer that it may not work perfectly and is almost certainly not the ‘right’ way to go about things! (But it did make the Read More link disappear).

Rob, won’t this get rid of “Read more…” on all my posts though? I only want to effect (or affect?) one post?
Thank you!

Yes it will. I did warn you!

Why do you want to remove it from one entry and not the others?

Or maybe you can not fill in the Summary box but just display the main blog post?

Rob

Rob,
I am advertising for a seminar on my page and I don’t like how “Read more…” looks underneath the advertisement. www.JonMessner.com.
Thank you :slight_smile:

OK, try this

#unique-entry-id-284.blog-entry span.blog-read-more {
	display: none;
}

Rob

2 Likes

Rob,
You are a great, great man! Thank you!!

Well that’s up for debate but I’m glad I was able to help.

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.