Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #693611

    hi, is it possible to have this nice transform-effect on hover a menue?
    https://www.ing-diba.at/

    #693943

    Hey!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .av-main-nav > li > a:active:after, .av-main-nav > li > a:focus:after, .av-main-nav > li > a:hover:after {
        background-color: #767676;
        width: 100%;
    }
    .av-main-nav > li > a:after {
        display: inline-block;
        content: "";
        text-indent: -99999px;
        width: 0;
        height: .25rem;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-top: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    

    Best regards,
    Yigit

    #694025

    Hi Yigit, thanks for your fast support. Now it looks like there would be a other disturbing line under the nice animated line.

    #694161

    Hi,

    Sorry but I don’t understand what you mean by your last post, could you try to explain a bit further please?

    Thanks,
    Rikard

    #694720

    on hover: there is more then one line (please take a look to the gif-screencast).
    – one line is well animated (thx)
    – but below, there is a unexpectet other line. not animated.

    this is looking uncleare and wrong. how can i show only the well animated line?

    #694886

    Hi,

    Ok, thanks for the explanation, could you link to a page where we can see the issue please?

    Best regards,
    Rikard

    #694912

    link is in the field “privat”

    #696439

    Hi,

    try this code:

    .av-main-nav li:hover .avia-menu-fx {
    visibility: hidden;
    opacity: 0;
    }
    

    Hope this helps!

    Best regards,
    Andy

    #698924

    nearly – the hover-line is not in the same line like the active-line . the hover-line is higher (on the screen left) .

    #699109

    Hi,

    try this code:

    .avia-menu-fx {
    bottom: 0px;
    }
    

    and adjust the value if needed.

    Best regards,
    Andy

    #699722

    hi andy, i tried it. now all lines are to hight :-(

    now it is nearly perfect: the centered-line-animation effect with a littel slow-animation looks cool!
    – but a small to-much-distance is under the hover-line. how can the hover-line goes a little bit down?

    thank you!

    #699724

    i got it. not perfect, but good. if it goes better – i am happy.

    .av-main-nav > li > a:after {
        display: inline-block;
        content: "";
        text-indent: -99999px;
        width: 0;
        height: .1rem;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-top: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-bottom: -.1rem;
    }
    .av-main-nav li:hover .avia-menu-fx {
    display: hidden;
    opacity: 0;
    }
    #top .main_menu .menu li.active-parent-item .avia-menu-fx{
        opacity: 1;
        visibility: visible
    }
    /*.avia-menu-fx {
    bottom: 0px;
    }*/
    #699934

    Hi,

    glad you’re happy now. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Menue hover transform effect’ is closed to new replies.