PDA

View Full Version : Small problem with "online" status.


MaDCaT75
09-11-2003, 07:40 PM
For my users I have their status wether they are online or offline in postbit. For the onine part, the code is this:

<table style="filter:glow(color=yellow)"><tr><td><font color="white" size=1">Online</td></tr></table></font>

However it seems to create an unwanted affect such as shown here:

as you can see it creates a <br> under the STATUS: part. Any way to make it so that "online" is right next to the status part?

Sylvus
09-11-2003, 08:48 PM
Don't add the table after the Status:

Syl...

MaDCaT75
09-11-2003, 09:54 PM
Then what should the code be so I still get the glow affect?

Sylvus
09-11-2003, 10:15 PM
*TRY* this.

Add this to your header:


<style>
<!--
<style type="text/css"><!--

.online { filter:glow(color=yellow); }

//-->
</style>


In your postbit, replace the table with:


<font CLASS="online"><font color="white" size=1">Online


Give that a shot. I'm not sure if it will work with Styles because of the glow but it won't hurt trying.

Syl...

MaDCaT75
09-12-2003, 01:02 AM
Doh, that didnt work. Shows up as plain online text.

Sylvus
09-12-2003, 02:08 AM
Then you'll have to play around with your post bit layout to remove the forced BR that the table causes.

Or find something else to use to represent offline and online. The glow doesn't do it for me :)

Good luck!

Syl...

SmEdD
09-12-2003, 02:08 AM
<table style="filter:glow(color=yellow, strength=2)">

MaDCaT75
09-12-2003, 04:57 AM
<table style="filter:glow(color=yellow, strength=2)">

I'm about confused as to where to put this exactly or what to replace it with :confused:

Sylvus
09-12-2003, 11:17 AM
Replace your old table wit SmEdDs but as before, it will not fix your forced BR issue since it's still a table.

Syl...