Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #363909

    Hello.
    I’d like to add margin top at the top of menu container only for laptop screen size.
    Cuz when I added margin top at the top, it also effects to small screen (mobile UI).

    Do you have any idea?

    #364033

    Hi idpokute!

    Thank you for using our theme.

    You have to wrap your CSS in a media query like:

    
    @media only screen and (min-width: 1030px) {
         .your_class{
              margin-top:  20px !important;
            }
    }
    

    Put this AFTER the CSS code without media query and adjust the width.

    Regards,
    Günter

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