PDA

View Full Version : online offline status


biggkay
12-19-2003, 12:36 AM
i have added this line in the posbit online template, yet i the Online/Offline jumps to the next line...what do i do to have it in the same line as the rest of the text....

<table style="filter:glow(color=green,strength=3)"><smallfont><b>Offline</b></table></font>

MindTrix
12-19-2003, 07:36 AM
Post your online/offline postbit here.

g-force2k2
12-19-2003, 11:35 AM
I believe it is because you have the style property in a table maybe try to put it in a span instead.

Regards,
g-force2k2

biggkay
12-19-2003, 03:11 PM
in the postbit template:

<smallfont><b>$post[username]</b> is now</smallfont> $onlinestatus
</td>

postbit offline:

<table style="filter:glow(color=red,strength=3)"><smallfont><b>Offline</b></table></font>

postbit online:

<table style="filter:glow(color=#32cd32,strength=3)"><smallfont><b>Online</b></table></font>

Lesane
12-19-2003, 03:48 PM
The 'table' way of using glow does add a new line automaticilly:
<table style="filter:glow(color=green,strength=3)"><smallfont><b>Offline</b></table>

Instead just use the 'font' tag:
<font style="filter:glow(color=green, strength=3);height=1px"><b>Offline</b></font>

Same for postbit online ofcourse.

biggkay
12-20-2003, 06:34 AM
thanks a lot Lesane...it worked...