PDA

View Full Version : so is this already made. or easy//


SixSeries
09-12-2005, 08:21 PM
question np

Omega Prime
09-12-2005, 08:54 PM
You'll need to edit your CSS definitions by adding this after the rest of the code in your AdminCP > Style Manager > All Style Options:

.info {
padding-left: 3px;
padding-right: 0px;
padding-top: 3px;
padding-bottom: 3px;
background-color: #F1F1F1;
border-top: 1px solid #DBDBDB;
border-right: 2px solid #DBDBDB;
border-left: 1px solid #DBDBDB;
border-bottom: 2px solid #DBDBDB;
margin-bottom: 3px;
}

Edit the color codes as you see fit. Lastly, you'll need to edit your postbit template to include the new info tag. For instance:

<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>

Becomes:

<if condition="$post['joindate']"><div class="info">$vbphrase[join_date]: $post[joindate]</div></if>

That should be it ;)

SixSeries
09-12-2005, 08:57 PM
thanks... that help'd alot

Marco van Herwaarden
09-13-2005, 03:44 AM
SixSeries

Please don't remove your question after someone answered it. It could still be helpfull to someone else.