Semantic HTML
Posted: Wed Oct 27, 2010 3:53 pm
It will be WAY easier to style AbleCommerce, if you nix all inline style attributes, and create class attributes for EVERYTHING, especially anything that represents any kind of semantic information. Even separating the currency symbol from the actual price amount. E.g., Never just put it together, in this case, "$9.95".
Designers seem to want to change everything, and as a developer, I'm having to do all this manually. It's really annoying. If you MUST style something inline, then it should DEFINITELY be replaced with a class. And PLEASE nix the non-data tables.
Code: Select all
<span class="currencySymbol">$</span><span class="price">9.95</span>
Designers seem to want to change everything, and as a developer, I'm having to do all this manually. It's really annoying. If you MUST style something inline, then it should DEFINITELY be replaced with a class. And PLEASE nix the non-data tables.