• andrew55

    (@andrew55)


    When menu link on main nav is clicked, it appears to have a fade effect as it is going to next link:

    https://www.lifeleap.org/

    I’ve looked in the customization panel and css, but can’t seem to find out how to disable this. I think it’s tricky to find with Firebug because it happens after link is clicked.

    I already disabled “Fade effect on link hover” in the customization panel.

    Any suggestions on how to disable this fade effect? Thanks for any help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • David_G

    (@questas_admin)

    Looks like the menu isn’t fading. If you are still having this problem, try clearing your cache on your browser.

    Thread Starter andrew55

    (@andrew55)

    I’ve cleared cache (WordPress and browser) several times. I still see the effect in Firefox and IE.

    When a main menu link is clicked, it fades to a darker color for a moment, and then new page opens.

    It’s not a bad effect at all, but I have to get it disabled for several reasons. I need the link to stay the same color (and not fade when clicked).

    I’ve searched for hours and cannot find what is causing effect.

    Thanks for any suggestions.

    David_G

    (@questas_admin)

    Tried again in Firefox, that worked perfect no change. In IE (which I rarely use) when I clicked on the menu items they turned white briefly, is that what you are talking about?

    Thread Starter andrew55

    (@andrew55)

    I’m not getting any white (FF, Chrome, IE) – I’ll go through the css to see what might be causing that.

    What I’m talking about is is the menu links turn a darker, grayish blue, right after they are clicked. My guess it’s some type of javascript fade effect.

    It’s tricky because it does seem intermittent – or, it could be that it’s really only visible on slower page loads – with a quick page load, it could be difficult to catch.

    This is strange. I’ll keep going through it to see if I can find out what’ causing it.

    Thread Starter andrew55

    (@andrew55)

    I was able to remove the effect with this:

    a, li {
    transition: all 0.0s ease-in-out !important;
    -webkit-transition: all 0.0s ease-in-out !important;
    }
    
    .tc-fade-hover-links a:not([class*=round-div]), .tc-fade-hover-links a:visited, .tc-fade-hover-links button, .tc-fade-hover-links input[type=button], .tc-fade-hover-links input[type=submit] {
    -webkit-transition-duration: 0.0s !important;
    transition-duration: 0.0s !important;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘hiding menu fade effect?’ is closed to new replies.