lowcoupling
lowcoupling

Reputation: 2169

how to change carousel caption's width in twitter bootstrap

I am trying to make the caption of a carousel having the same width of the background image (which means as the browser). Is there any way to do that?

Upvotes: 0

Views: 332

Answers (1)

You have to overwrite carousel-caption class. Here's an example:

  .carousel-caption {
        left:0px;
        right:0px;
        width:100%;
        background-color:white;
        color:blue;
    }

Upvotes: 1

Related Questions