Susy Compass omega is adding #margin-left: -1em;

mastgupshup

New Member
I am using the Susy framework to create a grid for my website and am really liking it. I can't figure out why #margin-left: -1em is being added when I use omega in span columns. I cannot seem to find any information about it and it throws this error when I validate the css: .second Parse Error #margin-left: -1em; My code looks like the below\[code\]//this is the default number of columns$total-columns: 12; //width of each column$column-width : 4em; //space between columns$gutter-width : 1em; //space on the right and left of the grid$grid-padding : $gutter-width;.first{ @include span-columns(6,12);}.second{ @include span-columns(6 omega,12);}\[/code\]and generates this\[code\].first { width: 49.15254%; float: left; margin-right: 1.69492%; display: inline;}.second { width: 49.15254%; float: right; margin-right: 0; #margin-left: -1em; display: inline; }\[/code\]
 
Top