• Closed
  • Egil Aasgaard
    Spectator
    07.07.2015 at 09:33 #18683

    How can I disable the mouseover-effect in the meny, which makes the text “jump up and down”?

    Patrik Löfvander
    Spectator
    Posts: 11
    07.07.2015 at 09:55 #18684

    Hi!

    Try theme options, Header, and Disable main menu Hover Effect

    Imran
    Spectator
    Posts: 402
    07.07.2015 at 13:46 #18690

    Hi Egll,

    Thanks for writing in,

    If you wish to disable that effect, so you can achieve that by adding the following code under Appearance > Theme Options > custom CSS:

    .link-effect a span {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    }

    Thanks.