I’m using bootstrap-sass to integrate Twitter Bootstrap in Rails but I’m having issues with the browser horizontal scrollbar showing without the need for it.
Sample code in a Rails View:
<div class="row-fluid">
<div class="span4"> </div>
<div class="span8">
<table>
<tr>
<td><%= image_tag("up-arrow.jpg") %></td>
<td><h3> Select a Maintenance category </h3></td>
</tr>
</table><br>
</div>
</div>
</div>
I can’t find why it does it and how to fix it.
See these links examples: http://d.pr/hLQd and http://d.pr/LOOP (Look at the bottom horizontal scroll)
I fixed this particular issue by overwriting the
gridGutterWidthvalue from 20px (default) to 30 or 35px.Don’t think it’s a Bootstrap bug though.
Thanks!