Hi everyone
On my Mobile Phone (Android Nexus 5) is the Menu Button (for the slide out menu) directly over the logo. That’s not the way I imagine it.
1. The logo is not center (you can see it on mobile: contoweb.ch/wordpress). How can I change this for the mobile version?
2. Can I set the menu button to non-fixed and visible everywhere (on top right every time) and a little bit below as now?
Thanks for help!
Grüsse aus der Schweiz
Fabrice
Hey Fabrice!
Please add following code to Quick CSS in Enfold theme options under Styling tab
1)
@media only screen and (max-width: 768px) and (min-width: 480px) { .logo { margin-left: 30px; }}
@media only screen and (max-width: 479px) { .logo { margin-left: -35px; }}
2)
#advanced_menu_toggle { right: 2%; top: 40%; }
Regards,
Yigit
Hi Yigit!
Thanks for your fast response!
Just tried out your solution. Number 1 works perfect, the logo will be displayed much better.
The second code doesn’t work. The menu button is still on the same place and on the fixed position on the site. Is #advanced_menu_toggle the right style class for mobile view?
EDIT: Sorry, my mistake! I mean for Number 2 also the mobile view. Can you say me how I can change that on mobile view, only for the menu button (logo should only displayed on top of the page)?
Grüsse
Fabrice
Hey!
Please replace second code with following one
#advanced_menu_toggle { position: fixed; right: 2%; top: 40%; }
You can adjust top and right values to change the position of the button
Regards,
Yigit
Works perfect! Thanks a lot :-)
Gruss
Fabrice