• Closed
  • Egil Aasgaard
    Spectator
    July 7, 2015 at 9:33 am #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
    July 7, 2015 at 9:55 am #18684

    Hi!

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

    Imran
    Spectator
    Posts: 403
    July 7, 2015 at 1:46 pm #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.