Glitch

Hey all,

I'm noticing that in the Aqua-Soft VB skin, the user's online status appears in the same font and immediately following the username. This makes for an awkward situation where their last name can appear to be their status.

See the screenshot here:

http://www.blinkmag.com/username_oddity.jpg

Is there an easy way to fix this? I notice it happens here on aqua-soft.org, too.

thanks

#439648

Ah yea, is a way to fix it, I just never really noticed it.

Profile pages are still sections I need to do over big time.

MEMBERINFO > MEMBERINFO (template)

Edit this bit

				<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>

to your liking.

#439654

Ah yea, is a way to fix it, I just never really noticed it.

Profile pages are still sections I need to do over big time.

MEMBERINFO > MEMBERINFO (template)

Edit this bit

				<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>

to your liking.

Thanks man! Fixed, see:

http://www.blinkmag.com/fixed_status.jpg

Not very pretty, but definitely better... :)

#439656

I'll try to make it graphical when I redo these sections

#439660

I'll try to make it graphical when I redo these sections

Thanks for the quick assist.

:)

#439661

Use this code to replace the online/offline text with the status icon instead:

Edit the following template:

postbit_onlinestatus

Add the following text in place of existing text:

<if condition="$onlinestatus==0"><img class="inlineimg" src="../../unavailable.html" alt="<phrase 1="$user[username]">$vbphrase[x_is_offline]</phrase>" border="0" /></if>
<if condition="$onlinestatus==1"><img class="inlineimg" src="../../unavailable.html" alt="<phrase 1="$user[username]">$vbphrase[x_is_online_now]</phrase>" border="0" /></if>
<if condition="$onlinestatus==2"><img class="inlineimg" src="../../unavailable.html" alt="<phrase 1="$user[username]">$vbphrase[x_is_invisible]</phrase>" border="0" /></if>

#447627