How can i add Posts,Birthday,Jon date and the rest in border like here :
3 posters
name in border
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°3
Re: name in border
Please don't double post. Your post needs to be separated by at least 24 hours before bumping. Please use the edit button instead!
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°4
Re: name in border
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°6
Re: name in border
Okay, go to Display > Templates > General and open the template viewtopic_body.
Find :
Replace by :
Save and publish.
Then go to Display > Colors > CSS stylesheet and add the following rules to your stylesheet :
You can change the colors ( EEE, CCC ) if you want.
Find :
- Code:
<!-- BEGIN profile_field -->
{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
<!-- END profile_field -->
Replace by :
- Code:
<!-- BEGIN profile_field -->
<div class="profile-field">{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}</div>
<!-- END profile_field -->
Save and publish.
Then go to Display > Colors > CSS stylesheet and add the following rules to your stylesheet :
- Code:
.profile-field {
background:#EEE;
border:1px solid #CCC;
border-radius:3px;
margin:3px 0;
padding:3px;
}
You can change the colors ( EEE, CCC ) if you want.