Log in

View Full Version : Anyone know how to make my columns like this?


duketxboy
08-11-2011, 02:44 PM
Anybody know how to make my forum colums look something like this
https://vborg.vbsupport.ru/external/2011/08/39.jpg

sivaganeshk
08-11-2011, 03:01 PM
u want three columns or the status icon ?

duketxboy
08-11-2011, 10:02 PM
Its the mail, status icon, than the forum post.... Want it somewhat exactly lk that one or if that isn't possible I want the status icon alone

napy8gen
08-12-2011, 07:50 PM
Isn't that a vb3 default statusicon? You can download vb3 from members.vbulletin.com

duketxboy
08-13-2011, 01:51 AM
Yeah just trying to figure out how to get my forum split up the way this one is

Lynne
08-13-2011, 02:55 PM
You could try something like.... modify the pm_messagelistbit template and put this right under the first line:
<div class="status_icon">
<img src="{vb:stylevar imgdir_statusicon}/pm_{vb:raw pm.statusicon}.png" class="threadicon" alt="" />
</div>

Remove the image elsewhere in the template. Then add this to the additional.css template:
.status_icon {width: 30px; height: 100%; clear:both; display: inline-block;}
.pmlist .blockrow .commalist {margin-left: 30px;}
modify as needed, but those are the basics.

duketxboy
08-14-2011, 01:53 PM
You could try something like.... modify the pm_messagelistbit template and put this right under the first line:
<div class="status_icon">
<img src="{vb:stylevar imgdir_statusicon}/pm_{vb:raw pm.statusicon}.png" class="threadicon" alt="" />
</div>

Remove the image elsewhere in the template. Then add this to the additional.css template:
.status_icon {width: 30px; height: 100%; clear:both; display: inline-block;}
.pmlist .blockrow .commalist {margin-left: 30px;}
modify as needed, but those are the basics.

just did it didn't do anything :(

Lynne
08-14-2011, 03:29 PM
It worked fine on my test site. It could be you have a custom style and so you will need to play with it to get it to work there.