Site logo

[Resolved] Special CSS for homepage

Home Forums Support [Resolved] Special CSS for homepage

Home Forums Support Special CSS for homepage

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2268466
    Robin

    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

    #2268482
    Leo
    Staff
    Customer Support

    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);
    }
    #2268485
    Robin

    Hi Leo,

    Yes that was my request 🙂 thanks it works!

    Kind regards

    Robin

    #2268487
    Leo
    Staff
    Customer Support

    No problem 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.