[Resolved] Padding over header

Home Forums Support [Resolved] Padding over header

Home Forums Support Padding over header

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #163923
    Oleg

    Hello!
    Tell me, what CSS is needed to make the indentation, as in the screenshot? I also want to specify the height of the indentation in pixels.
    1

    • This topic was modified 8 years, 3 months ago by Oleg.
    #163925
    Tom
    Lead Developer
    Lead Developer

    You can try this:

    .site-header {
        margin-top: 40px;
    }
    #163928
    Oleg

    mental support))))))

    #163930
    Oleg

    Tom, I need this to work only on the desktop version, but not for mobile.

    • This reply was modified 8 years, 3 months ago by Oleg.
    #163932
    Tom
    Lead Developer
    Lead Developer

    This should do it:

    @media (min-width: 769px) {
        .site-header {
            margin-top: 40px;
        }
    }
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.