Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1471104

    The header logo is cut off in mobile, though it looks good on desktop. A lesser issue, the menu items are too low on mobile. Some CSS already manages header logo and menu button. What is the correction needed to have the full logo visible and the menu items up in the great area on mobile?

    #1471118

    Hey Tanja,

    This CSS in Quick CSS is causing that to happen:

    @media only screen and (max-width: 767px) {
      .responsive #top .logo {
        height: 66px !important;
        width: 100%;
        display: flex;
        justify-content: center;
      }
    }

    Please try removing or adjusting the height.

    Best regards,
    Rikard

    #1471119

    Thank you, that increases the background height. The logo is still cut off.

    #1471133

    Hi,

    Thank you for the update.

    We adjusted the css code a bit. Please try it again:

    @media only screen and (max-width: 767px) {
    	.responsive #top .logo {
    		height: 66px !important;
    		width: 100%;
    		display: flex;
    		justify-content: center;
    	}
    
    	.responsive .logo img,
    	.responsive .logo svg {
    		margin: 0;
    		max-height: 66px !important;
    	}
    
            .responsive #top .av-logo-container .avia-menu {
                    height: 100%;
                    margin-top: -30px;
            }
    }
    

    Best regards,
    Ismael

    #1471156

    Thank you! This works, with a little tweaking to my preferences.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Logo cutoff and menu too low on mobile’ is closed to new replies.