I have put the following code here
I am having issues with my boxes and they are displaying how they are on the jsfiddle but there is room for another 2 on the top row within my 960 grid.
Why is it pushing it onto two lines?
HTML:
<div id="holder">
<div id="box" class="box">
<p>Text</p>
</div>
<div id="box" class="box">
<p>Text</p>
</div>
<div id="box" class="box">
<p>Text</p>
</div>
<div id="box" class="box">
<p>Text</p>
</div>
<div id="box" class="box">
<p>Text</p>
</div>
<div id="box" class="box">
<p>Text</p>
</div>
</div><!-- Holder End -->
CSS:
#holder{width:100%;height:600px;}
.box{width:260px;min-height:350px;float:left; border:1px solid red;}
#box{margin-right:80px;}