Friday 10 June 2005 2:34:32 am
I guess I have a understanding problem. I'm trying to make a table with a class attribute. I write in a xml field the following: <table class='tableBlue' border='1' width='100%'> I use the normal table.tpl to write this out. Then I get:
<table class="renderedtable" border="1" cellpadding="2" cellspacing="0" width="100%">
The normal table.tbl start like this.
<table {section show=ne($classification|trim,'')}class="{$classification|wash}"
{section-else}class="renderedtable"{/section} border="{$border}" cellpadding="2
" cellspacing="0" width="{$width}">
It looks like the $border works but not the $classification. My point was to get a class="tableBlue" out.
I have also enabled the AvailableClasses[]=tableBlue in my content.ini.append.php. Any suggestions?
|