Log in

View Full Version : Easy Post bit question


lightwave
06-16-2006, 04:26 PM
You know the posts bits that have like a Column around them

This is mine

https://vborg.vbsupport.ru/external/2006/06/11.jpg


This is how i want to look like.



https://vborg.vbsupport.ru/external/2006/06/12.jpg


Just any type of column forum -thanx

Its On alot of forums -.-

Freesteyelz
06-16-2006, 10:55 PM
There are many methods but I like to use the <div> tag for it. Example:


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


And so forth...

In your Main CSS you can set the following in the Additional CSS Definitions:

.usrinfo {
margin-top:1px;
padding:3px;
text-align:left;
background:#999999;
}


Just play with the CSS attributes and values. Add more or remove the ones you don't want. :)

lightwave
06-17-2006, 01:13 AM
i got it.
Thanx man