Do you tell your designers to only use classes?
Updated by Brady Stroud [SSW] 1 year ago. See history
123
In Sitefinity you can alter the appearance and content areas on your webpage using "Layouts". These layouts are basically just Divs with sizes applied.

Figure: You have the ability to assign a Class to a Div only. No other customisations can be made
Additionally, Sitefinity will hard code the widths of the layout and there is no way to stop it. The hack work around is to manually remove the widths via JQuery:
$(".sf_colsOut").css("width", "");