Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #482706

    Hi guys,

    I’ve set the buttons to be of a specific color. Now when I over on top they kind of light up.

    However I’d like the color code to change when hovering. E.g. colors for button and text are now Purple/White. I’d like when someone hovers them to become White/Purple.

    How can I achieve this?

    Many thanks in advance

    #483116

    Hey maschera,

    Please try the following in Quick CSS under Enfold–>General Styling:

    .avia-button:hover {
        background-color: #ffffff !important;
        color: #e800dc !important;
    }
    

    Thanks,
    Rikard

    #483208

    Hi Rikard,

    Thanks for the tip – It partially worked.

    The only two issues are that 1. I lose the button frame and 2. I’d have like a nice fade-in fade-out effect when hovering (similar to the one when you hover on a team member photo), rather than a net light on/light off as it is now.

    #483215

    Hi!

    Please add following code to Quick CSS as well

    .avia-button {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border: none!important;
    }

    Cheers!
    Yigit

    #483268

    Hi Yigit,

    It worked great for the homepage button. However I’d like the buttons in the Fullwidth Sub Menu and Contact page to have the same effect.

    Should I add some other code?

    #483680

    Hi!

    Use this for the full width submenu button:

    #top .av-menu-button-colored:hover > a .avia-menu-text {
        background-color: blue !important;
        color: #ffffff;
        webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    The contact form button should have the same effect by default.

    Best regards,
    Ismael

    #483826

    Almost there Ismael.

    It worked but when hovering there is a frame line (see the link attached please)

    #484139

    Hi!

    use this code:

    #top .av-menu-button-colored > a .avia-menu-text {
    border-bottom: 0px solid;
    }
    

    Best regards,
    Andy

    #484490

    Super!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Buttons hovering color effect?’ is closed to new replies.