Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #881248

    This site: https://kau-hawaii.com
    I only want the menu to extend 80% of the screen. It looks fine on desktop but on laptop and tablet in horizontal position it looks like this image

    https://imgur.com/a/OK4jC

    The menu moves to a second line. How can I adjust this to all one line of menu?
    Thank you in advance,

    • This topic was modified 6 years, 12 months ago by elames.
    #881290

    Hey elames,

    I think reducing the fonts wouldn’t be enough, probably make some of it submenu. Otherwise I would suggest setting Menu Items for Desktop “display as icon”.

    Best regards,
    Nikko

    #881339

    No sorry that won’t work. Client does not want icons. I think it has to do with setting up a media query but I am not sure which it would be.

    #881369

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 1680px)  {
    .avia-menu-text{
    font-size:11px!important;
    }
    }

    Best regards,
    Jordan Shannon

    #881395

    Sorry this code did nothing. Still wraps to second line

    #881397

    Hi,

    Please provide admin info so we can login and look into this issue further?

    Best regards,
    Jordan Shannon

    #881400
    This reply has been marked as private.
    #881408

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 1680px) and (min-width: 1630px)  {
    
    .avia-menu-text{
    font-size:14px!important;
    }
    
    }
    
    @media only screen and (max-width: 1630px) and (min-width: 1437px)  {
    
    .avia-menu-text{
    font-size:12px!important;
    }
    
    }
    
    
    @media only screen and (max-width: 1437px) and (min-width: 1245px)  {
    
    .avia-menu-text{
    font-size:10px!important;
    }
    
    }
    
    @media only screen and (max-width: 1245px) and (min-width: 1051px)  {
    
    .avia-menu-text{
    font-size:8px!important;
    }
    
    }
    
    
    
    @media only screen and (max-width: 1051px) and (min-width: 767px)  {
    
    .avia-menu-text{
    font-size:7px!important;
    }
    
    }

    Best regards,
    Jordan Shannon

    #881413
    This reply has been marked as private.
    #881433

    Hi,

    The site looks a bit different than what I was originally seeing. The following should work:

    @media only screen and (max-width: 1137px) and (min-width: 990px)  {
    .avia-menu-text{
    font-size:13px!important;
    }}

    Best regards,
    Jordan Shannon

    #881450
    This reply has been marked as private.
    #881478
    This reply has been marked as private.
    #881679

    Hi,
    It looks as though the only change that you now need is the border radius, Try this code in the General Styling > Quick CSS field:

    #menu-item-6904 a {
    border-top-right-radius: 5px!important; 
        border-bottom-right-radius: 5px!important; 
    }
    #menu-item-5236 a {
    border-top-left-radius: 5px!important; 
        border-bottom-left-radius: 5px!important; 
    }

    Please clear your cache and any caching plugin on your site.

    Best regards,
    Mike

    #881698
    This reply has been marked as private.
    #881734

    Hi elames,

    Glad Mike could help :)

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

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