Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Similarly to the way facebook achieve the blue bar at the top, how do I make one bar go the width of the screen (dependent on resolution) but the rest of the content restriction to 1024px.

This is something I have never done before but would like to have a go at.

Thanks

share|improve this question

2 Answers

up vote 3 down vote accepted

Just don't put the element inside one with a constrained width.

share|improve this answer
How does FB achieve the blue bar but the facebook logo and other links inside the 1024 width? – Luke Dec 21 '10 at 16:11
Problem if the one with the constrained width is the html-element. – rightfold Dec 21 '10 at 16:11
@Luke add another constrained width element inside the blue bar. – rightfold Dec 21 '10 at 16:13
the blue bar is NOT inside the container that's 1024px wide. – Chase Florell Dec 21 '10 at 16:13
@Luke — with two elements. One with content and one without. – Quentin Dec 21 '10 at 16:13

if you setup your HTML like this:

<body>
<div class="header site-header">This is my header</div>
<div class="content site-content">This is my content</div>
</body>

and your css like this:

html, body{margin:0; padding:0;}

.site-header{width:100%; margin:0;}
.site-content{width:1024px; margin:0 auto;}

you should be good to go.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.