-
AuthorPosts
-
June 9, 2014 at 2:42 pm #54222
Hi,
Is there a reason why with the one page navigation the jumping in the menu doesn’t work correctly? Is there something I should be doing differently? Here is the site I am working on where it doesn’t jump fully to the correct content band when veiwing on a phone, yet it jumps fine on a desktop. http://www.brittondaniel.com
June 9, 2014 at 2:57 pm #54225Would it have anything to do with my hidden content? Or does the mobile menu just not work well with one page navigation? It seems to not jump to the top of the content band.
June 9, 2014 at 10:15 pm #54331Hey Buck,
That is because the offset is still working in mobile but the Navbar is not in fixed position anymore. To make the navbar stay fixed, please add the code below in the Customizer > Custom > CSS.
@media (max-width: 979px) { .x-navbar-fixed-top, .x-navbar-fixed-left, .x-navbar-fixed-right { position: fixed; } }
Hope that helps. 🙂
June 10, 2014 at 11:53 am #54590That helps, but how do I get the mobile menu to fold back up? It stays open and you cannot see anything.
Thank you
June 11, 2014 at 2:07 am #54838Hey Buck,
Can you give us more details. It seems fine to us (see http://screencast.com/t/rvKlXYHIefMU).
Thanks.
June 11, 2014 at 10:30 pm #55361so, when using the website on a phone, you click on one of the menu items. Lets say I click on services, it jumps to services section, but the menu doesn’t collapse. The menu stays open and you can’t see much of the website.
June 12, 2014 at 2:07 pm #55630Hi Buck,
Add this code at your customizer’s custom javascript.
jQuery(function($){ $('#menu-main-menu a').click(function(){ $('.x-btn-navbar').click(); }); });
It should trigger collapse when a menu item is clicked.
July 2, 2014 at 3:38 pm #64196Thank you. It worked!!
The word “Testemonials” runs off the screen on a phone. How can I fix it so it doesn’t run off the screen?
July 3, 2014 at 2:15 pm #64645Hi Buck,
I tested on my side and it’s okay, would you mind sending a screenshot? And which phone this issue occurs?
Thank you.
June 28, 2015 at 10:12 am #315199This reply has been marked as private.June 28, 2015 at 10:32 am #315212Hi @rrrsarda,
Could you please create a new topic, then provide us with login credentials so we can take a closer look? To do this, you can make a post with the following info:
– Link to your site
– WordPress Admin username / PasswordDon’t forget to select Set as a private reply. This ensures your information is only visible to our staff.
Thanks.
August 14, 2015 at 8:14 pm #359575Hello! I am having the same issue and wonder if you guys can help me out? I tried using the java script above and may have not done it correctly but it’s still not working…
August 14, 2015 at 10:35 pm #359656Hey @lealongordonjr,
Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:
– Link to your site

– WordPress Admin username / passwordDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
Thank you.
January 27, 2016 at 2:27 pm #767488This reply has been marked as private.January 27, 2016 at 2:33 pm #767500This reply has been marked as private. -
AuthorPosts