How to hide excerpts from front page
-
Hello
I’m experimenting with hiding Excerpts from under the Post Title on the Front Page (toolkit theme). I’ve tried using
div.entry-content {
display:none;
}This however hides everything on each individual blog post ;-)
Can you help?
Sincerely, Henry
The blog I need help with is: (visible only to logged in users)
-
Looks like you’ve figured out how to apply CSS just to the home page in your blog by adding “.home” to the front of your selector:
body.home div.entry-content p { display:none!important; }That should do the trick. Nice work!
The only suggestion I have is that you could probably simplify that rule a bit. Give this a try:
.home .entry-content p { display:none; }
- The topic ‘How to hide excerpts from front page’ is closed to new replies.