Topic Resolution: Resolved
  • Closed
  • Ulrike Liebert
    Spectator
    March 11, 2016 at 11:46 am #25275

    Where can I change the background color of the TEXT BOXES on the sliders of the bootstrap sliders?

    Denzel Chia
    Moderator
    Posts: 2672
    March 12, 2016 at 8:00 am #25328

    Hi,

    Use the following in Theme Options -> Custom CSS
    This is for the caption background.

    #bootstrap-slider .carousel-caption p {
    background: #ff0000 none repeat scroll 0 0 !important;
    }

    This is for button background.

    #bootstrap-slider .bootstrap-button {
    background: #ff0000 none repeat scroll 0 0 !important;
    }

    Change #ff0000 to the color hex code of your choice.

    Thank you

    Ulrike Liebert
    Spectator
    Posts: 9
    March 14, 2016 at 11:53 am #25390

    Thanks