In bootstrap how do I make the various divs reach to the borders of the page

my test practice/site is www.thebigmeow.us I would love the advice.
how do i get the header for example to stretch all the way to the browser border.
The wrap has a 100% width. So that should work and all inner divs unless they are at a set size they should stretch as well.

Using bootstrap flexible.

Thank you.
D

Yes, but the wrapper div has left and right padding on it, which makes it more than 100% width (as padding is added to the overall width)—so it is pushing everything to the right a bit (and some content is off screen): line 112

.container-fluid {
padding-right: 20px;
padding-left: 20px;
}

Thank you ralph will go check it out. I had tried to mess w/the wrap setting; from 0 & auto to 0 to 100% had not looked at the container.

yeah it’s throwing everything off to the left.

Hey, Sherpa…