Quote:
Originally Posted by mccollin
Does anyone know how to get the header ad not to wrap when someone compresses the page width in their browser. I noticed that digitalport.co.uk has a fixed width for every page. I'd rather have a minimum width the page compresses to so that it can be expanded wider, but not go narrower than the width of the header image plus the header ad size.
|
Simply, set minWidth to what you require. Once the browser width is reduced to this setting it will stop from being fluid and stay at a fixed width.
If you're not using vB4 then you will need to add the definition to your main body styling like this:
Code:
body {
min-width:950px;
}
HTH.