Hello! We’re modeling our site http://crosstownalliance.com/ with similar effects like this site https://www.churchofthehighlands.com/
In the navigation bar, if you hover over “About Us” on our site, and “About” on theirs. Then hover down. You might see a noticeable difference in speed. Hovering from link to link is SO much faster on their site, It almost “clicks” when you hover over it. However, on our site, it is much slower and takes a few seconds to actually hover over it.
Is there a way I can change this? And, how?
Even the buttons on their site are running SO much faster. I’m thinking it’s something to do with transition or the hover speed. But I’ve put this code in and it does seem to improve it but it’s not as fast as I hope it can be. Is this something I can’t change after all?
Code used:
/* snappier menu drop down */
body .x-dropdown,
body .x-dropdown.x-active {
transition-duration: 0s;
}
body .x-menu > li > .x-dropdown {
opacity: 0;
visibility: hidden;
transition-duration: 0s;
}
body .x-menu > li:hover > .x-dropdown {
opacity: 100;
visibility: visible;
transition-duration: 0s;
}
body .x-menu > a:hover > .x-dropdown > a:hover a {
opacity: 100;
visibility: visible;
transition-duration: 0s;
}
.x-menu .x-dropdown > a:hover a {
transition-duration: 0s;
}
