PDA

View Full Version : What have I missed here?


Beermonster
08-14-2004, 02:45 PM
I probably can't see for looking, what have I missed?


<td bordercolor="#33FF99"><if condition="<marquee height="18" direction="up" ScrollDelay="75" ScrollAmount="1">$post[arcadeawards]</marquee></td>

Modin
08-14-2004, 03:00 PM
You've cut off an <if> statement.

I'd find out what it belongs too, though from the looks of it just removing it will work.


<td bordercolor="#33FF99"><marquee height="18" direction="up" ScrollDelay="75" ScrollAmount="1">$post[arcadeawards]</marquee></td>


Cheers
Modin

Beermonster
08-14-2004, 03:32 PM
I had put the </if> on must have posted if before I added it, I need the IF statment in, this is what I have now


<td bordercolor="#33FF99"><if condition="<marquee height="18" direction="up" ScrollDelay="75" ScrollAmount="1">$post[arcadeawards]</marquee></if></td>

Modin
08-14-2004, 03:54 PM
ok, so now you need some sort of condition in the if statement, like this...

<td bordercolor="#33FF99"><if condition="$variable == 5"><marquee height="18" direction="up" ScrollDelay="75" ScrollAmount="1">$post[arcadeawards]</marquee></if></td>

Beermonster
08-14-2004, 04:24 PM
Thanks Mobin, I was looking so hard at other things I missed the obvious :rolleyes:

Works perfect now :)

Modin
08-15-2004, 04:40 AM
great to hear :)