How to make user profile in vBulletin looks like this in warezscene.org...

admincp > vbulletin options > styles & languages > vertical post bit click yes. save


Code:
Below is how to do it.

1) In your AdminCP > Styles & Templates > Style Manager > Main CSS Options > Additional CSS place the following code:

.postinfo { 
	border-top: solid 1px #E0E0E0; 
	border-left: solid 1px #E0E0E0; 
	border-right: solid 1px #D7D7D7; 
	border-bottom: solid 1px #D7D7D7;
	margin: 3px 5px; 
	padding: 2px; 
	color: #808080; 
	background: #d2dee3;
	font-size: 10px; 
}

2) You should change the background colour to suit your style. Then click Save.

3) In your AdminCP > Styles & Templates > Style Manager > Edit Templates > postbit_legacy find the following code:

For Join Date: (other Examples At The Bottom!)

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

4) Replace the relevant DIV tags as shown below.

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

5) Replace the revevant DIV tags for any other information you wish to be shown boxed.


there yeah go.
 
I want to do the same but can't understand you filez :( ...

The same style is also used by digitalpoint forum take a look here Digital Point Forums - View Profile: grgnng

filez would you please a bit more concise how to make our member profile style like its on digitalpoint forum?

Anyone else would like to contribute?

Thanks so much for all the helpful and kind people here
 
how much more percise do you want. I gave you the entire steps to do what you asked??????? and Im not doing it for you......use the code given and set the colors as needed and save..other than the instructions I gave you go get a theme with the postbit_legacy already boxed in.
 
Sorry filez if I bothered you. Actually I don't want to use vertical post bit. Digitalpoint forum is using none vertical post bit and I just want to make user profile like them as it shows on member info page.

I think we need to modify memberinfo template.

Thank you for your help.
 
Oh you are right mojopanel. I'll try to use the code from vbulletin 3.6.8 and will post here if its working.

Thanks a lot for your input.
 
Thank you so much mojopanel. Yes its working fine with memberinfo template code from vbulletin 3.6.9 and now user profile are displaying as its on digital point forum. I just have to modify it according to my forum theme.

Thank you for all the helpful people here.
 
Back
Top