I get mixed signals from different forum posts. Does this exist due to a change:
@gridColumns: 12;
@gridColumnWidth: 60px;
@gridGutterWidth: 20px;
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
to
@gridColumns: 16;
@gridColumnWidth: 40px;
@gridGutterWidth: 10px;
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
Is that all I need to do to create 16 columns? I saw some forum posts saying that you need to go hard code in span11-16 selectors for it to work because they no longer exist with Bootstrap 2.0 and cannot be dynamically created.
Malon source
share