Okay
  Public Ticket #208726
Reverse Rollover on Buttons
Closed

Comments

  • Tracy started the conversation

    I would like to change the rollover effect on the buttons. Currently when I create a button there is an opacity on the button and it makes it look dull. I'd like to make it work the exact opposite way.

    I'd like to have the button look the color that it was chosen and then if they rollover the button, then it would apply the opacity. 

    Is there some sort of simple code that could be applied to do that across the whole site? 

    Thanks for the help. 

    Tracy

  •  997
    ThemeNectar replied

    Hey Tracy!

    Add this into the Custom CSS box located in your Salient Options panel: 

     
    body .nectar-button {
      opacity: 1!Important;
    }
    body .nectar-button:hover {
      opacity: 0.8!Important;
    }
    

    Cheers :)

  • Tracy replied

    That works perfectly. Thanks!