PDA

View Full Version : Mini Mods - Online / Offline status CSS styling


dszuecs
02-01-2012, 11:00 PM
This is a very simply, alternativ ON / OFF status styling via CSS.
Check out the screenshots at the end of the post, the status can be found on the right if the nickname


1. Open your "additional.css" and add this code (feel free to pick your desired colors)


/* BEGIN CUSTOM ONLINE STATUS*/

.customstatuson {
background: #E1FA05;
color: #000;
}

.customstatusoff {
background: #FA7305;
color: #FFF;
}

.customstatusinv {
background: #FFF;
color: #3c3c3c;
}

/* END CUSTOM ONLINE STATUS*/




2. Open your "postbit_onlinestatus" template and replace the existing code with this one


<vb:if condition="$onlinestatus==0"><span class="customstatusoff">&nbsp;OFF&nbsp;</span></vb:if>
<vb:if condition="$onlinestatus==1"><span class="customstatuson">&nbsp;ON&nbsp;</span></vb:if>
<vb:if condition="$onlinestatus==2"><span class="customstatusinv">&nbsp;INV&nbsp;</span></vb:if>

foudu1030
02-02-2012, 07:36 PM
First ! :D

Nice resultat ! :D

Dr.osamA
02-03-2012, 02:34 AM
thank you bro
installed + rated
tanslated too

GhostHunter2010
04-09-2012, 09:19 AM
nice

hazem_aliraqi
04-09-2012, 10:06 AM
thank you bro

Superorb
09-28-2012, 08:54 PM
Is there a way to center the on/off/inv text vertically?

dszuecs
01-03-2013, 01:01 PM
Is there a way to center the on/off/inv text vertically?

Hi Superorb

Sorry for my late response..

You can add another attribute to the css called 'vertical-align'
I guess the easiest way is to use px-values, just try&error. Mine for example is exactly vertical with this:

vertical-align: 2px;

Cheers

ggrimes620
03-06-2013, 07:33 PM
Works perfectly and looks great.

Thanks!