Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1186196

    Hi there,

    My coworker is experiencing menu overlapping on her computer.

    Please see screen grab here

    Where can I edit the font size?

    #1186475

    Hey Lara,

    I would not suggest making the font smaller, you can reduce the paddings though:

    
    #top .av-main-nav > li > a {
        padding: 0 9px;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1187516

    Hi Victoria,

    This doesn’t do anything to the website.

    #1187521

    Hi,

    Have you tried adding the code to the very top of quick css so it runs first? Also, clear the cache a few times over.

    Best regards,
    Jordan Shannon

    #1187522

    Hi Jordan,

    Yes, I’ve tried this

    #1187678

    Hi,

    The menu starts overlapping the logo at 1200 pixels since you have a lot of menu items. Do you want to activate the mobile menu at that pixel value maybe? If so then you can use this in Quick CSS:

    @media only screen and (max-width: 1200px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    #1207428

    Hi team,

    I’m trying to figure out how to update wordpress to the latest version 5.4 without losing anything or stuffing up the layout?

    Thanks Lara

    #1207547

    Hi,

    Please refer to the following:

    Best regards,
    Jordan Shannon

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