Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Multiquote (on) Multiquote (off)
Add Reply
Custom Profile Field as show here
Topic Started: Feb 2 2014, 04:22 PM (447 Views)
GodzillaV2
Member
[ *  * ]
Posted Image

How do you get this? I've tried to work it but it seems im not able to do.
Offline Profile Quote Post Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

Admin CP > Users & Groups > Profile Fields
Offline Profile Quote Post Goto Top
 
GodzillaV2
Member
[ *  * ]
Okay Got it. But how do you not bold it and italicize it..
Offline Profile Quote Post Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

GodzillaV2
Feb 2 2014, 05:37 PM
Okay Got it. But how do you not bold it and italicize it..
Admin CP > Board Template > Javascripts:
Code:
 
<style type="text/css">
.c_user .user_profile dd {
font-weight:400;
font-style:italic;
}
</style>
Edited by DaPizzaMan, Feb 2 2014, 05:50 PM.
Offline Profile Quote Post Goto Top
 
GodzillaV2
Member
[ *  * ]
It worked, thanks. One problem. Theres this big gapping space on the profile

Posted Image

Also, how do you unbold the main Profile Field?
Edited by GodzillaV2, Feb 2 2014, 06:03 PM.
Offline Profile Quote Post Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

GodzillaV2
Feb 2 2014, 05:59 PM
It worked, thanks. One problem. Theres this big gapping space on the profile

Posted Image

Also, how do you unbold the main Profile Field?
Change the code I supplied from `.user_profile` to `dl`, and then find
Code:
 
dl.user_profile dt {
margin-top:10px;
}
and remove it from your Theme Appearance.
Offline Profile Quote Post Goto Top
 
GodzillaV2
Member
[ *  * ]
The gapping space one worked, but not so much the other one
Offline Profile Quote Post Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

GodzillaV2
Feb 2 2014, 06:58 PM
The gapping space one worked, but not so much the other one
Code:
 
<style type="text/css">
.c_user .user_profile dd {
font-weight:400;
font-style:italic;
}
</style>
should become
Code:
 
<style type="text/css">
.c_user dl dd {
font-weight:400;
font-style:italic;
}
</style>
Offline Profile Quote Post Goto Top
 
GodzillaV2
Member
[ *  * ]
That doesnt seem to work also. It only does it for the posts, group, joined, and member number. Also, is there a reason why "Registered with IP Address
" is right next to the ip address instead of spacing it out?
Offline Profile Quote Post Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

GodzillaV2
Feb 2 2014, 07:10 PM
That doesnt seem to work also. It only does it for the posts, group, joined, and member number. Also, is there a reason why "Registered with IP Address
" is right next to the ip address instead of spacing it out?
So by "main profile field" do you mean the title for the profile field? For example, for Posts: [some number], "Posts:" would be unbolded?

As for the IP Address issue, it's because the text is too long.
Offline Profile Quote Post Goto Top
 
GodzillaV2
Member
[ *  * ]
"[some number]" would be unbolded while the "Posts:" would stay the same.

And yes i meant the title of the profile field, such as "Championships and Accomplishments"

Any way i can shorten the text?
Offline Profile Quote Post Goto Top
 
GodzillaV2
Member
[ *  * ]
Bump
Offline Profile Quote Post Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

GodzillaV2
Feb 3 2014, 01:00 PM
"[some number]" would be unbolded while the "Posts:" would stay the same.

And yes i meant the title of the profile field, such as "Championships and Accomplishments"

Any way i can shorten the text?
I'm just unsure what you want bolded and unbolded. So I'll just provide all the options there are:
  1. All profile fields are unbolded:
Code:
 
<style type="text/css">
.c_user dl dt,.c_user dl dd {
font-weight:normal;
}
</style>

  • All "titles" for the profile fields ("Posts:", "Group:", "Member:", "Joined:"), including custom profile fields are unbolded:
    Code:
     
    <style type="text/css">
    .c_user dl dt {
    font-weight:normal;
    }
    </style>

  • All "values" for the profile fields ("Members", "51 [posts]", "#609,162 [Hidden Content: Login/Register to View]
    Code:
     
    <style type="text/css">
    .c_user dl dd {
    font-weight:normal;
    }
    </style>
    [/list]
    Also, whichever one of these you choose, make sure to remove any previous codes I gave you in this topic.
  • Offline Profile Quote Post Goto Top
     
    1 user reading this topic (1 Guest and 0 Anonymous)
    « Previous Topic · ZetaBoards Support · Next Topic »
    Add Reply