Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #355364

    When I hover over a fullwidth button the button color changes to almost white.
    I have found a quick CSS code to change the font color of the font, but not the button color itself on hover. How can I change that?

    #355492

    Hi Frank!

    You don’t need CSS to change that – http://screencast.com/t/zwU4CZmWBJ

    Best regards,
    Josue

    #433871

    I think I’m having the same issue — my full-width buttons change to white on rollover / hover — http://879.890.myftpupload.com/programs/women-supporting-women/ — and that screencast is a broken link.

    Please advise. Thanks!

    #434452

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .avia-button-fullwidth:hover {
      color: #333!important;
    }

    Best regards,
    Yigit

    #434530

    Thanks, but that just changes the font color. I’d like to to act just like the other buttons, where the font color stays the same and the background lightens just a little. In other words, how can I keep the font color the same, but just have the background lighten a little (not turn to white)?

    #434577

    Hey!

    Use this code instead:

    .avia-button-fullwidth:hover {
        opacity: 0.9 !important;
    }
    .avia-button-fullwidth .avia_button_background {
        display: none !important;
    }

    Best regards,
    Josue

    #434761

    Perfect! Thank you so much!

    #434925

    You are welcome, always glad to help :)

    Regards,
    Josue

    #441803

    Hello,

    how van i change the color of all fullwidth buttons in the quick CSS ?

    thnxs in advance.

    #441813

    Hey!

    Try adding this code to the Quick CSS:

    #top .avia-button.avia-button-fullwidth {
        background-color: red !important;
    }
    
    #top .avia_button_background.avia-button-fullwidth {
        background-color: green !important;
    }

    Red is idle, green is hover.

    Cheers! 
    Josue

    • This reply was modified 9 years, 6 months ago by Josue.
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.