As someone who prefers to simplify format rules - so set the <p> tag style and use it as much as poss, there is a lot of clutter in the standard layouts - including tables where they aren't *really* needed. I would rather control font sizes from the template than via Actinic variables.
I appreciate a lot of this is a hangover from the period prior to CSS, but are there any dangers from cleaning as many of these layouts as possible?!
Here is an example (Also Bought Items...). We have fixed padding and spacing, a special class for headings, and then strong used too! All in a table. Set with a variable for width. And that's just the first 10 lines!
<table width="<actinic:variable name="ACTSTDWIDTH" />" cellspacing="2" cellpadding="3" border="0">
<tr>
<th align="center" colspan="2" class="cartheading"><strong>Customers who bought these items also bought the following:</strong></th>
</tr>
</table>
<table width="<actinic:variable name="ACTSTDWIDTH" />" cellspacing="2" cellpadding="3" border="0">
<tr>
<td class="cart">
<ol>
I appreciate a lot of this is a hangover from the period prior to CSS, but are there any dangers from cleaning as many of these layouts as possible?!
Here is an example (Also Bought Items...). We have fixed padding and spacing, a special class for headings, and then strong used too! All in a table. Set with a variable for width. And that's just the first 10 lines!
<table width="<actinic:variable name="ACTSTDWIDTH" />" cellspacing="2" cellpadding="3" border="0">
<tr>
<th align="center" colspan="2" class="cartheading"><strong>Customers who bought these items also bought the following:</strong></th>
</tr>
</table>
<table width="<actinic:variable name="ACTSTDWIDTH" />" cellspacing="2" cellpadding="3" border="0">
<tr>
<td class="cart">
<ol>
Comment