slindsey3000
slindsey3000

Reputation: 4271

Twitter Bootstrap Extend Background Across Screen

Would like the "light grey" background (on http://CappedIn.com) across the top navigation to stretch across the whole screen. The rest of the content I would like as is. Any ideas how to do this? HAML code include (it shows bootstrap classes I use)

%body
  %div.container-fluid
    %div.row-fluid.top_nav
      %div.span7
        = render "/shared/navigation/top_left_nav.html.haml"         
      %div.span5
        = render "/shared/navigation/top_right_nav.html.haml"
    = yield

Thanks!

Upvotes: 0

Views: 85

Answers (1)

kgu87
kgu87

Reputation: 2057

CSS -

.top_nav {
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    background: #EEEEEE;
}

Upvotes: 1

Related Questions