Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1092225

    Hi there,

    When you resize the browser window the menu overlaps the logo. How can I set the logo to scale with the window so that it doesn’t overlap until it’s at phone view? staging.pointgreyfiesta.net

    Thanks,
    Carolin

    #1092764

    Hey Carolin,

    Thsi is happening because of the size you have.
    The only thing that can be done is to switch the menu to be faster on mobile / burger.

    Best regards,
    Basilis

    #1093443

    Hi Basilis,

    in Enfold > Main Menu > General it’s already set to ‘Activate for Smartphones … below 990px’
    Where else do I need to change something?

    Thanks!
    Carolin

    #1093584

    Hi Carolin,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 1380px) {
      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

    #1093728

    Hi Rikard,

    thanks that works. But I wonder if I can set the logo to scale when you scale the browser window like everything else on the page does. Then I wouldn’t need to switch to the mobile menu so soon.

    Thanks!
    Carolin

    #1094153

    Hi Carolin,

    Yes, this can be done too but the header height might not change and so the logo will need to be centered too. Just different css.

    Best regards,
    Victoria

    #1094235

    Hi Victoria,

    I would like to try that! Could you please give me the CSS for it?

    Thanks,
    Carolin

    #1095258

    Hi Carolin,

    Best regards,
    Victoria

    #1095329

    Sorry yes the website is live now. Pointgreyfiesta.org
    See login below
    Thanks
    Carolin

    • This reply was modified 5 years, 6 months ago by messmeriza.
    #1095890

    Hi Carolin,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    @media only screen and (min-width:768px) and (max-width: 990px) {
        .responsive .logo img {
            width: 70%;
            margin-top: 10px;
        }
    }
    @media only screen and (max-width: 767px) {
        .responsive .logo img {
            width: 80%;
        }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1095928

    Hi Victoria,
    I have pasted your CSS into Enfold > General Styling > Quick Css but the logo does not scale when you resize the browser window and make it smaller.
    Any other ideas?
    Thanks,
    Carolin

    #1096819

    Hi Victoria,

    The code works only for specified sizes, which sizes are you looking at?

    Can you please post a few screenshots?

    Best regards,
    Victoria

    #1098549

    Hi Victoria,

    the logo only starts to scale in size when the browser window is as wide as the logo. Can you try it yourself, just minimize the browser window manually by dragging it smaller with your mouse. I would like to set the logo to scale when you start scaling the browser window. Then I wouldn’t need to switch to the mobile menu so soon.

    Is that possible?

    Thanks,
    Carolin

    #1100367

    Hi Carolin,

    You can try to set the logo width to auto but it might not give the expected result.

    Best regards,
    Victoria

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