Site logo

Archived topic

Style on archive page and not single post

7 replies · Started by David on April 26, 2019

Viewing posts 1–8 of 8

Hi there,

you can target the element with this selector to add your border:

body:not(.single) .inside-article

You can string nots:

body:not(.single):not(.page) .inside-article

Or alternatively you can use several specific selectors ie.

.blog .inside-article, .archive .inside-article, .search .inside-article {
/* CSS Styles */
}

Thanks David

You're welcome

Try this CSS:

.site-main>:last-child .inside-article {
    border: unset;
}
This archived topic is closed to new replies.