Okay
  Public Ticket #142741
Change Opacity & Color of Transparent Buttons In Nectar Slider
Closed

Comments

  • Greg started the conversation
    Hi, I would like to change the opacity & color of the transparent buttons in the Nectar Slider. How can I do this? Thanks!
  •  1,089
    ThemeNectar replied

    Hey again Greg!

    Enter this into your custom css box in the theme options panel:

    body .swiper-slide .button.transparent a {
       color: #ff5c5c!important;
       border-color: #ff5c5c!important;
    }

    Cheers :)

  • Jesse replied

    Is there a custom CSS for changing just one of the transparent buttons\' color instead of both of them?

  •  8,991
    Tahir replied

    Hey ,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    body .swiper-slide .button.transparent:nth-child(1) a {
       color: #ff5c5c!important;
       border-color: #ff5c5c!important;
    }
    body .swiper-slide .button.transparent:nth-child(2) a {
       color: #ff5c5c!important;
       border-color: #ff5c5c!important;
    }
    


    Best.


    ThemeNectar Support Team