Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    There absolutely is a way to remove the black line. After looking at the page with an inspector, it looks like the key to your problem lies with two elements on the page: div.carousel-caption and the h2 within the div, both of which have partially transparent backgrounds. Getting rid of one or both backgrounds is quite simple with a little CSS:

    #bootstrap-slider .carousel-caption {
        background: none;
    }
    
    #bootstrap-slider .carousel-caption h2 {
        background: none;
    }

    Depending on how the page loads, it may be necessary to add the !important flag to one or both of the above CSS rules.

    Anyway, I hope this is helpful. Please let me know one way or another.

    Cheers.

    Thread Starter Shantelbeckers

    (@shantelbeckers)

    Hi Kendall,
    Yay! Yes, that worked! Thank you so much.
    Shantel

    Shantel,

    You’re certainly welcome and thank you for marking the topic as resolved.

    Cheers.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘removing dark line through bootstrap slider’ is closed to new replies.