-
AuthorPosts
-
October 23, 2014 at 1:23 pm #130927
Those buttons are just links to different pages on the site…
I am trying to get the mobile menu button to display when the main menu disappears because it is too wide. I can’t seem to find the number to adjust to fix that. Here is a screenshot of it from my iPad. Notice there is no button the right hand side.
http://www.lvbaptist.org/beta/resources/
October 23, 2014 at 5:19 pm #131091Hi Benjamin,
It’s caused by this css.
.x-btn-navbar { margin-top: -80px; top: 0; }
Change it to this :
.x-btn-navbar { margin-top: 20px; top: 0; }
Cheers!
October 24, 2014 at 9:47 am #131512#1 That fixed the problem with it not showing up, but if you look at the iPhone screenshot you can see the button is very far down the page. I want it to be to the right of the logo as previously
#2 As you see in the second screenshot the iPad is showing the main menu items (it does this correctly on the iPhone too) but it will not expand when tapped on to display the sub menu items
October 24, 2014 at 11:19 am #131605Hi there,
#1
Please try this code:@media (max-width:368px){ .x-btn-navbar { margin-top: 0; } }
#2 Would you check this thread:http://theme.co/x/member/forums/topic/mobile-navigation-2/#post-71005
Thank you.
October 24, 2014 at 1:25 pm #131664Thank you. I added that code for #1, but I think the logo is interfering with it because when I hold my iPhone in landscape it will show the button in line with the logo, but when it is portrait it drops below and pushes everything beneath that. Also, why is the logo no longer centered? Thank you!
October 24, 2014 at 4:08 pm #131776Hi Benjamin,
Please add the following CSS code via Appearance > Customize > Custom > CSS:
@media screen and (max-width: 980px){ .sub-menu { display: block !important; visibility: visible !important; } } @media screen and (max-width: 370px){ .x-brand img { width: 200px; } }
Let us know how this goes!
-
AuthorPosts