Feature requests » Put own css-class and width/height params to every TD

added on Jul 7, 2007 by SashiKK
Hello :)

I just start using this GREAT script and have some trouble. I couldn’t put own css-class & width/height attributes
into each cell of LinkEX-code.
{TD}-tag in {TABLE cols="3" CellSpacing=1 CellPadding=1 Width=624 Height=20 Border=0}
<a href="{$URL}" title="{$ANCHOR}" Class=links>{$ANCHOR}</a> are useless :(

Help please.

p.s. sorry for my English.
added on Jul 7, 2007 by v0id
hi,

how about this in your html file:
<style>
table.mytable td {
width:33%;
}
</style>

and this template in LinkEX:
{TABLE cols="3" CellSpacing=1 CellPadding=1 Width=624 Height=20 Border=0}
<a href="{$URL}" title="{$ANCHOR}" Class=links>{$ANCHOR}</a>

- v0id
added on Jul 7, 2007 by SashiKK
Thanks v0id, I`am used that feature something like that - problem was not disappear. May be Your variant better.
added on Jul 7, 2007 by SashiKK
YYYYYYYEEEEEESSSS ! IT’S ALIVEEEEEEE !!! =)

THANKS AGAIN, V0ID !
added on Jul 8, 2007 by v0id
cool, glad to hear! Of course I left out the classname in the template, so to others it should be:

{TABLE cols="3" CellSpacing=1 CellPadding=1 Width=624 Height=20 Border=0 Class="mytable"}
<a href="{$URL}" title="{$ANCHOR}" Class=links>{$ANCHOR}</a>

and then this style

<style>
table.mytable td {
width:33%;
}
</style>

- v0id

Add reply

This thread has been inactive for more than 14 days, so it has been locked.

Feel free to create a new thread with your questions.