Hello,
It is possible to assign specific CSS class to column. For example:
Code: |
{aricsvtablecolumn id="File" className="my_column"}{/aricsvtablecolumn}
|
Then wrap {aricsvtable} tag with <DIV> element with specific CSS class:
Code: |
<DIV class="fix_tbl">
{aricsvtable}
....
{aricsvtablecolumn id="File" className="my_column"}{/aricsvtablecolumn}
...
{/aricsvtable}
</DIV>
|
After this add the next CSS rule to "CSS Template" on component backend:
Code: |
.fix_tbl TABLE .my_column
{
text-align: right;
}
|
Regards,
ARI Soft