maximus
maximus

Reputation: 11524

Twitter Bootstrap - make the well fullwidth

I am currently playing with bootstrap around and this is what I have created so far: Website

However,

I want that the well component of twitter bootstrap is closing with the well and the well should be full width.

So far I have created a container:

<div class="container-fluid">
  <div class="well">Watch out:
    <a>Video!</a> 
  </div>
</div>

How to create the closing well?

Upvotes: 0

Views: 1485

Answers (1)

Adrift
Adrift

Reputation: 59799

<div class="container-fluid"> has 60 px of top margin. Just decrease that to 40px and there will be no gap between .well and the navigation.

For .hero-bar to line up add margin-top: -20px; to <div class="hero-unit">

Upvotes: 3

Related Questions