[Resolved] Is it possible to exclude CSS from my home page?

Home Forums Support [Resolved] Is it possible to exclude CSS from my home page?

Home Forums Support Is it possible to exclude CSS from my home page?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1430116
    Andy

    Hi there,

    Earlier, I got this custom CSS code from you guys:

    @media (max-width: 768px) {
        .separate-containers .site-main {
            margin-top: 0;
        }
    }

    I’d like to apply this CSS code to all pages except my homepage (which is the blog archive). Is this possible?

    Thank you

    #1430124
    Leo
    Staff
    Customer Support

    Hi there,

    This should work:

    @media (max-width: 768px) {
        body:not(.home).separate-containers .site-main {
            margin-top: 0;
        }
    }

    Let me know ๐Ÿ™‚

    #1430245
    Andy

    Brilliant!!! Thanks Leo!!!

    #1430904
    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.