-
AuthorPosts
-
May 1, 2015 at 9:16 pm #263501
Can you please get someone to fix the CSS/jquery that causes the navigation to instantly close when changing between submenus?
This is an issue with your demos as well, and with the theme on my site.
It affects usability of navigation so is pretty important to fix, I believe.
Here is a video demonstrating.
http://screencast-o-matic.com/watch/cohnV1feWH
firefox 37.0.2 (latest version)
chrome 42.0.2311.90http://www.futurised.com is running the child theme, and X 3.2.3.
Clint
May 1, 2015 at 11:41 pm #263574Hi there,
Thanks for writing in! We have identified this issue and will patch this issue within our latest release.
In the meantime, you can add the following CSS workaround into your Customizer, Custom > CSS section using the menu Appearacne -> Customize to resolve this issue.
.x-navbar .desktop .x-nav .sub-menu > li:hover ul { display: block; }
Hope that helps.
May 2, 2015 at 1:06 am #263621Hi,
That’s great it has been looked into it. Sadly that css fix is not working for me. I tried !important as well, and I tried with chrome cache killer enabled to be sure the new css would load.
.x-navbar .desktop .x-nav .sub-menu > li:hover ul {
display: block !important;
}
.x-navbar .desktop .x-nav .sub-menu > ul:hover li {
display: block !important;
}May 2, 2015 at 1:08 am #263624Hello There,
How about we try this code in your customizer, Appearance > Customize > Custom > CSS
.x-navbar .desktop .x-nav li:hover > ul.sub-menu { display: block; }
Please let us know if this works out for you.
May 2, 2015 at 1:13 am #263628This reply has been marked as private.May 2, 2015 at 1:17 am #263633Hello Again,
Please try the code we gave in our previous reply.
Thank you.
May 2, 2015 at 1:26 am #263637Just noticed your previous reply. I tried it. YES IT WORKS!!!
.x-navbar .desktop .x-nav li:hover > ul.sub-menu {
display: block;
}Thanks very much.
May 2, 2015 at 1:27 am #263638You’re welcome.
-
AuthorPosts