Removing Recent Posts on Showcase page in Twenty Eleven
-
I have the Twenty Eleven theme with a Showcase template Page as my home page. I’d like to have just this full width photo show up without having a Recent Post underneath. I have the custom upgrade. Can anyone tell me what to put in the CSS to remove the Recent post from a Showcase Page?
The blog I need help with is pollycorndesign.wordpress.com.
Hi pollcorndesign,
Try adding this code to your custom CSS:
.showcase-heading {
display: none;
}
Also, I noticed that your homepage image is quite large 4288×2862, you could gain some faster page load times by reducing the size.
You can do this within WordPress. refer to the resizing section in this article: http://en.support.wordpress.com/images/image-editing/
You should be able to scale the width down to at least 1200px (height will adjust automatically), without losing any quality :)
Hope this answers your question!
Taking another look, this code would actually be better:
.recent-posts {
display: none;
}
Thank you!! I will also re-size the image.
The topic ‘Removing Recent Posts on Showcase page in Twenty Eleven’ is closed to new replies.