Our website is designed using the 960.gs grid system, and I am attempting to customize it into a 3-column layout with Fixed(100px) - Fluid(max width) - Fixed(100px) view. However, most online generators for 960.gs grids only offer fully fixed or fully fluid options. I am trying to modify the originally generated full-fluid grid into this desired layout:
<------------100%--------------->
======== =============== ========
| fixed| |max to screen| |fixed |
======== =============== ========
<-100px> <-100px>
The modified code can be viewed here: http://jsfiddle.net/vZm8x/
- Issue 1) I am unsure how to make the central content area expand to the maximum width allowed by the screen. Using width:auto; does not work, and setting width:100% causes the divs to wrap.
- Issue 2) After fixing the width to 100px, all divs continue wrapping downwards. Setting display:inline; does not resolve the issue. Any suggestions?
My question is: Is it possible to tailor the 960.gs template to suit our specific requirements? If so, could you please provide guidance on how to address these issues? Thank you in advance!