Hi,
I'm getting a validation error in my news block of vbAdvanced coming from AME:
http://validator.w3.org/check?uri=ht....591#line-3244
It's inserting the number 425 (which is the default width setting in AME) inside a table tag.
EDIT
Okay, so I found what's wrong. It's in the ame_container template. The $ameinfo[width] is sitting all by itself inside the table tag. I can remove it, but something tells me it's supposed to be in there, but just in a width="$ameinfo[width]" setup... What is the correct code?
PHP Code:
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" $ameinfo[width] style="margin:10px 0">
<thead>
<tr>
<td class="tcat" colspan="2" style="text-align:center">
<a href="$ameinfo[url]" title="$ameinfo[title]" target="_blank">$ameinfo[title]</a>
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="panelsurround" align="center">
$ameinfo[code]
</td>
</tr>
</tbody>
</table></div>