Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #784234

    Hi Guys,
    For some reason my menu on mobile is way too close to the right side of the screen.
    Any way to fix it?

    #784290

    Hey Dee007,

    Can we possibly have temporary access into your Dashboard so we can have a closer look?

    Best regards,
    Sarah

    #784774

    Sure
    See Private content for link

    #784900

    Hey!

    Thanks for the access. I found that it’s because of the first part of your Quick CSS. This part:

    #header .container { 
       max-width: 100%!important; 
       width: 100%!important; 
    }

    To fix that, let’s restrict that code to screens that are bigger than 767px. (Or, screens that are NOT mobile phones.) Please use this code instead:

    @media only screen and (min-width: 767px) {
       #header .container {
          max-width: 100%!important;
          width: 100%!important;
       }
    }

    Best regards,
    Sarah

    #785981

    BRILIENT!!!
    thank you Sarah!

    #786143

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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