Global CSS for Posts archives pages

Hello

Is there CSS I can add so that blog archives pages only show the blog post title (with link)? I don’t want this to affect the blog page though; just the blog archives page.

Thanks!

Hi @yanikphoto,

Thank you for writing in, yes you can append the class .archive to your CSS selector so it will only affect the archives pages.

CSS Syntax and Selectors

Cheers!

Thanks for this but unfortunately, I’m not a programmer. I’m a designer. And I really don’t know what to do here.

I thought you could just give me a code snipet to put in Global CSS but I guess it,s more complicated than that. :wink:

Hi Yanik,

Please try:

.archive .entry-featured,
.archive .entry-content,
.archive .entry-footer {
    display: none;
}

Here are some related links of the suggestions above for further reading:

Hope this helps.

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