Topic Resolution: Resolved
  • Closed
  • Sam Wakefield
    Spectator
    April 11, 2016 at 10:51 pm #26446

    Hi there,

    I am wondering how you change the colour of the text boxes on Bootstrap Slider?

    BootstrapSlider

    I have managed to change the Title box but no the content

    #bootstrap-slider .carousel-caption h2, #bootstrap-slider .carousel-caption .button, #bootstrap-slider img {
    background: #1E90FF none repeat scroll 0 0 !important;
    border:none !important;
    }
    #bootstrap-slider .carousel-caption .button{
    border:none !important;
    }

    Denzel Chia
    Moderator
    Posts: 2656
    April 12, 2016 at 2:52 am #26458

    Hi,

    Please use the following.

    #bootstrap-slider .carousel-caption p {
    background: #1e90ff none repeat scroll 0 0 !important;
    border: medium none !important;
    }

    Thank you

    Sam Wakefield
    Spectator
    Posts: 18
    April 12, 2016 at 6:27 pm #26467

    Thank you that worked a treat!

    Final question! …

    How do you change the colour of the Learn More button and < > navigation buttons as well?

    Denzel Chia
    Moderator
    Posts: 2656
    April 13, 2016 at 1:41 am #26474

    Hi,

    Please use the following.

    .carousel-inner .bootstrap-button {
    background: #1e90ff none repeat scroll 0 0 !important;
    border: medium none !important;
    }
    #bootstrap-slider a.left::before, #bootstrap-slider a.right::before {
    background: #1e90ff none repeat scroll 0 0 !important;
    }

    Thank you.