Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #461235

    Mouse hover button on the slider- becomes transparent
    How can I disable this option and change it to be a different color and not transparent?

    Screenshot: http://prntscr.com/7id5n3
    Website url: https://www.ibamarkets.com/

    Thanks!!!!

    #461406

    Hi Lev!

    Add this to your custom CSS.

    .avia-slideshow-button:hover {
      opacity: 1 !important;
      background: red !important;
    }

    Cheers!
    Elliott

    • This reply was modified 8 years, 10 months ago by Elliott.
    #462289

    Thanks Elliott..
    Its work!!!
    You know maybe why I can not change the text color button?

    I put this code:
    .avia-slideshow-button:hover {
    opacity: 1 !important;
    background: #ffffff !important;
    color: #62bc46 !important;
    }

    Thanks..

    #462589

    Hey!

    The code you are using will only affect the hover state, I’m not sure what state you are trying to edit?

    You can try the following instead:

    #top .avia-button.avia-color-light {
    background: #ffffff !important;
    color: #62bc46 !important;
    }
    

    Regards,
    Rikard

    #462671

    perfect!!!!

    I just add :hover
    and I get exactly the result I wanted!
    Thank you

    #top .avia-button.avia-color-light:hover {
    background: #ffffff !important;
    color: #62bc46 !important;
    }

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Transparent hover botton’ is closed to new replies.