-
AuthorPosts
-
October 29, 2014 at 9:47 am #342626
Hi,
In the following site: http://thinkdif.co.il
the menu is over lapping the logo on mobile devices.this appears after the last upgrade to Enfold 3.0
I tried this:
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
max-width: 85%;
height: auto !important;
margin-left: 0!important;
}}but the logo on my client site is positioned on the right…
Thanks
Tal- This topic was modified 10 years ago by talelie.
October 29, 2014 at 7:27 pm #342925Shalom!
Please add following code to Quick CSS
#advanced_menu_toggle, #advanced_menu_hide { right: auto; left: 0; }
Cheers!
YigitOctober 30, 2014 at 10:26 am #343307Hi Yigit,
Thanks, another question: is there a possible to position the logo on the left, only for mobile devices?
logo on left, menu on the right?the website is in Hebrew, therefore the logo for desktop is on the right side.
Thanks
TalOctober 30, 2014 at 8:57 pm #343672Hi!
Yes, please add folowing code to Quick CSS
@media only screen and (max-width: 990px) { .html_header_top #top .av_logo_right .logo { left: 0; right: auto; }}
Best regards,
YigitNovember 2, 2014 at 9:05 am #344820Hi Yigit,
Didn’t work… the logo still on the right and the menu button on top of it.
How can I move the logo to the left on mobile only?November 3, 2014 at 3:15 pm #345269Hi!
Please add !important rule as following
@media only screen and (max-width: 989px) and (min-width: 990px) { .responsive .logo { left: 0!important; right: auto!important; }}
Cheers!
YigitNovember 4, 2015 at 8:24 pm #530391Hi Yigit,
A website with the custom css as explained above, suddenly, the mobile menu cover the logo.
the logo should be placed on the left and the menu on the right.the website is: http://thinkdif.co.il/
Thanks
TalNovember 5, 2015 at 4:26 pm #530908Hi!
Please add following code to Quick CSS
@media only screen and (max-width: 769px) { .logo, .logo img { float: left!important; }}
Cheers!
YigitNovember 6, 2015 at 9:06 am #531363Thanks! works just great.
November 6, 2015 at 11:04 am #531390and if I need to change the logo to the right and the mobile-menu to the left?
Thanks
TalNovember 9, 2015 at 1:28 pm #532544Hey!
then use this code:
@media only screen and (max-width: 767px) { a#advanced_menu_toggle { left: 10px; } .responsive #top .logo { float: right !important; margin-right: -185px !important; }}
and adjust as needed.
Regards,
AndyNovember 9, 2015 at 5:18 pm #532767Oops, the logo gets on the menu. the logo moves to the right, but the menu did not move to the left.
November 11, 2015 at 1:20 pm #533977Hi!
then try to add an !important. Use this code instead:
@media only screen and (max-width: 767px) { a#advanced_menu_toggle { left: 10px !important; } .responsive #top .logo { float: right !important; margin-right: -185px !important; }}
Cheers!
AndyNovember 11, 2015 at 2:10 pm #534009Works great!
Thanks!
November 11, 2015 at 3:21 pm #534081Hi!
glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.
Regards,
Andy -
AuthorPosts
- The topic ‘mobile menu overlap logo’ is closed to new replies.