
I would like to keep the center and sidebars at a fixed width while allowing my header to always be at 100% of the browser width.
I tried the following in HTML/CSS Inserts > CSS Inserts but it only seemed to make the minimum width as 700px for the center column. As soon as I stretch my browser it stretches the width of that center column.
.coltwo { width: 700px;}
I then adjusted the site to see how you were setting the width in FLUID mode and setting max/min width under Style & Configure Layout > Layout MIN/MAX width and then attempted to set my CSS to the following. This seemed again to only disallow the width of the center column from going under 700px while stretching the column at greater widths.
.coltwo { width: 700px; min-width:700px; max-width:700px }
I would like to set the column and right sidebar width as 700px + 360px but let the header stretch to 100% width.
Is there a way to do that with the FLUID layout using customized CSS?
BTW, thanks for all the work you guys do!! Your theme is the most customizable and so easy to use!!! You're awesome!