CSS Question

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