Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1012062

    Hello

    I recently got a new iPad and the resolution is different from my older one, and I noticed that when scaling down on desktop there is also a size where the logo is cut off at the bottom, and the burger sits on top. Once it gets a bit smaller it is fine. For my media queries I have everything set to the breakpoint of max 989 and then min 990 to hopefully accommodate all tablets and phones for the smaller size but I guess that this is no longer the case. I’m hoping that it’s a simple question of increasing the max to something a bit bigger, but I’m not sure. Please advise. Thank you in advance :)

    Cedar Creek

    #1012532

    Hey webWahine,

    Can you please show us a screenshot and the exact screen size / resolution?

    Thank you

    Best regards,
    Basilis

    #1012866

    Sure –
    Menu issue

    It changes to this right around 1935 pixels at 144ppi according to the size on my monitor, so when I drop it to 72ppi it comes out around 967 pixles wide.

    #1013666

    Hi,

    Thanks for the update. Please add this code on the Quick CSS field to adjust the logo.

    @media only screen and (max-width: 989px) and (min-width: 768px)
    .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container {
        height: 200px;
        line-height: 200px;
    }
    }

    Best regards,
    Ismael

    #1013763

    Thanks, Ismael – the code is missing it’s first bracket –

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    	/* start */
    			
    	.responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container {
        	height: 200px;
        	line-height: 200px;
    	}
    
    	/* end */
    }
    

    Now I can see the whole logo but the burger is still way up at the top, over the logo – it needs to be moved below, please :)

    #1013766

    Ok, so I almost have it – I gave the burger a margin-top –

    	.responsive #top .av-logo-container .avia-menu {
    		margin-top: 180px;
    	}

    But it’s slightly off center – especially noticeable when the menu opens and shows the list below. Please let me know what needs to be changed to get the burger centered :)

    #1014023

    Hi,

    Thanks for the update. It looks fine on my end.

    Screenshot: https://imgur.com/a/4ND0oJV

    Can you point us to the alignment issue?

    Best regards,
    Ismael

    #1014387

    You’re correct! It was offset to the right by about 20px but I just did a screenshot and it is definitely now centered. Thank you :)

    #1014424

    Hi,

    I’m glad you got this resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Adjust position of logo and mobile menu at a certain screen resolution’ is closed to new replies.