Hi team!
It’s me again!
In a previous topic, i talked about a problem with the header.
Topic : https://kriesi.at/support/topic/troubles-with-the-header-fixedresponsiveheight/
I checked, there is one problem again. :/
The problem comes with the responsive mode.
When I reduce the size of the page, the logo goes on the menu.
Look here : http://prntscr.com/60ozrp
and here : http://prntscr.com/60p04t
Then here : http://prntscr.com/60p0en
This is the desktop version.
On iPad, the website comes this way : http://mobt.me/5zJw
And if you scroll, the logo goes under the menu.
I prefer the logo disappear when we scroll for the responsive mode.
Is there a way to fix this?
Thank you for your help.
Hey lternis!
Try adding this to your custom CSS.
@media only screen and (max-width: 959px) {
#advanced_menu_toggle { display: block !important; }
nav.main_menu { display: none !important; }
}
Regards,
Elliott
Hey Elliott, that will do! Thank you!
Quick question : do you know how to increase a little bit the size of the menu button (on responsive mode)?
Thank you again
Hi Iternis!
Try adding this to Quick CSS:
#advanced_menu_toggle, #advanced_menu_hide {
font-size: 36px !important;
}
Best regards,
Rikard
Thank you guys, this is great.
All clear, problem solved.