-
-
when viewing site from mobile
menu drop down and logo not centered in portrait and landscape
header button missing
thx
-
Hello,
I added this code into your custom css box:
@media (max-width: 480px){ .header_button { display: block !important; float: left !important; top: 11%; } #logo { float: left !important;} } @media (max-width: 767px){ #logo { float: left !important;} .mobile_small_menu { left: 30px !important;} }
For the logo in mobile portrait and landscape.
The header button by default does not display in mobile. I added the needed code into your custom css box, but for it to take effect, you need to go to file css/bootstrap-responsive.php and find this line:.header_button { display: none !important; }
Remove the !important from it and save file.
Let us know.Best regards!
-
Note: I see you have Tower theme installed. This is Specular theme support forum. Please keep in mind to always post at your theme’s specific forum, to avoid any misunderstanding and get the right solution.
Also please keep in mind that duplicating topics of the same issue will not help get a faster answer (we reply to topics regarding their arrival time. The olderst first.)
But will also mess up the forum, making it harder for other users to browse and find the right solution to their issue.Thank you for understanding and cooperating!
Best regards!
-
i made the change.. nothing happened. im not to worried about it.
i am bothered by the way drop down menu looks in mobile mode.
is the logo to big or something else?
please look on mobile to confirm.
otherwise i love the desktop version. plan and simple. (viewing.. not creating :)
thx
-
actually it did work. thx. ill go with out.
definitely look into the menu issue. thx
-
ok so the problem is in portrait mode. the menu, after u open, gets stuck behind the logo. page refresh does fix it.
in landscape mode, the logo needs to move right alil. menu is is fine
after this im done… its all about content.
thx for your help.
-
Hello,
For the mobile menu i removed this line:
.mobile_small_menu { left: 30px !important;}
from the@media (max-width: 767px)
block of code and added this:
.mobile_small_menu { margin-left: -30px !important;}
in the end.
For the logo position in landscape, i added this:@media (max-width: 979px){ #logo { left: 60% !important;} }
Please check it.
Best regards!
-
You must be logged in to reply to this topic.