CSS Question

Associate
Joined
28 Nov 2006
Posts
224
Location
Vancouver...from Glasgow
Just playing about with some ideas and learning CSS at the same time. Im eventually going to put a portfolio thing up.

Can someone help tell me how to stop the header disconnecting from the page-wrap section when the browser is resized smaller?

Any crits on the design?

www.designthings.net

Cheers
 
You can either:
1. Drop the whole thing into a set width container.
2. Set a min-width of 916px on your header.

Code:
#header { min-width: 916px; width: auto;}
* html #header { width: 916px; /*Emulates min-width in IE6 */}
 
Back
Top Bottom