Site logo

Archived topic

Special CSS for homepage

3 replies · Started by Robin on June 29, 2022

Viewing posts 1–4 of 4

Hi there,

I use the marketer theme (from site library) and it has the following CSS:

.inside-article,
.sidebar .widget,
.comments-area {
border-right: 2px solid rgba(0, 0, 0, 0.07);
border-bottom: 2px solid rgba(0, 0, 0, 0.07);
box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}

Is it possible to add something to the code that it will affect all pages/posts besides the homepage?

Thanks

Robin

Hi there,

I don't fully understand the requirement.

Do you want the code above to NOT apply to the home page?

If so this should work:

body:not(.home) .inside-article,
body:not(.home) .sidebar .widget,
body:not(.home) .comments-area {
    border-right: 2px solid rgba(0, 0, 0, 0.07);
    border-bottom: 2px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}

Hi Leo,

Yes that was my request :) thanks it works!

Kind regards

Robin

No problem :)

This archived topic is closed to new replies.