Should I compromise the 960px grid to make a section completely fluid/full-width?
The person I am making the site for really wants the image in the speaking section cropped (shortened) and therefore it will be shorter than the other 2 columns unless all 3 columns are made wider. I just have them defined as the 1/3 column skeleton width.
In the speaking section is there an easy way to make the: increase the width of the three columns and thus make the whole section/row wider (than 960 px)/span across the whole screen while still being defined by the skeleton grid.
(by easy I mean minimum manipulation to the skeleton CSS.)
url: http://tinyurl.com/qbrjqne
<section>
<h3 id='speaking'></h3>
<div class="container">
<div class='one-third column'></div>
<div class='one-third column'></div>
<div class="one-third column">
<section class='whitemission'>
</section>
</div>
</div>
</section>
--- base/main style ---
@media only screen and (max-width: 767px) and (min-width: 480px)
.container .one-third.column, .container .eight.columns, .container .four.columns {margin: 50px 0; padding: 45px 0;}
-- skeleton--
.container { position: relative; width: 960px; margin: 0 auto; padding: 0; }
.container .column,
.container .columns { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
.container .one-third.column { width: 300px; }