Site logo

Archived topic

Make a box around posts on blog and all categories

4 replies · Started by Joey on June 27, 2020

Viewing posts 1–5 of 5

I have a setup where the blog page has drop shadow border around the posts, as follows.

.blog .inside-article {
    box-shadow: 0 5px 5px #C0C0C0;
}

How can I apply this code not only to the blog, but also to all category pages? Sorry, I'm missing something simple but can't find it in the forums.

Hi there,

first line of your CSS:

.blog .inside-article {

change to:

.archive .inside-article,
.blog .inside-article {

.archive was the missing code I was looking for. Thank you very much.

Glad to be of help

Forgot to mark as resolved.

This archived topic is closed to new replies.