PDA

View Full Version : Why are all the user titles bolded?


Elixar
08-06-2014, 09:44 PM
https://vborg.vbsupport.ru/external/2014/08/48.png

I'm not sure why the first rank is bolded, when I only want the 2nd and 3rd one bolded. When I go to the profile, the first rank isn't bolded as seen here:

https://vborg.vbsupport.ru/external/2014/08/49.png

How do I fix this?

--------------- Added 1407434279 at 1407434279 ---------------

Bump.

Elixar
08-07-2014, 11:20 PM
Bump. :)

Lynne
08-07-2014, 11:35 PM
You say usertitle in the title, but then you state they are ranks. Which are they - those are two totally different things? Please give us a link to view the problem. It could be an unclosed tag, or it could be the CSS doing this.

Elixar
08-08-2014, 02:36 AM
The Junior Member line is a user title based on post count. The Administrator line is a user rank that I've set up.

ForceHSS
08-08-2014, 03:12 AM
We can't help until you give us a link to view the problem

Elixar
08-08-2014, 03:45 AM
.......

CAG CheechDogg
08-08-2014, 04:39 AM
I am getting a band link my Man ....

Elixar
08-08-2014, 04:55 AM
.....

CAG CheechDogg
08-08-2014, 04:57 AM
Hmm... server not found error still my Man ...

Elixar
08-08-2014, 04:58 AM
Crap, hmm, it's working for me.

CAG CheechDogg
08-08-2014, 05:01 AM
Well Son of a Hooter's ..... it just keeps timing out for me my Man ... sorry ..

Elixar
08-08-2014, 05:04 AM
Well Son of a Hooter's ..... it just keeps timing out for me my Man ... sorry ..

No worries, I'm just wondering why it's doing that.

Paul M
08-08-2014, 11:31 AM
Is this in posts ?

There are no public viewable posts by that user (or any user in fact).

Elixar
08-08-2014, 03:36 PM
Is this in posts ?

There are no public viewable posts by that user (or any user in fact).


...

Lynne
08-08-2014, 03:57 PM
On the profile page, you have CSS to set the usertitle font-weight to normal. One the showthread page, you have CSS to set the usertitle font-weight to bold.

profile:
#sidebar_container.member_summary .mainblock .usertitle {
font-size: 11px;
font-weight: normal;
}


showthread:
.postbit .userinfo_noavatar .usertitle, .postbit .userinfo .usertitle, .postbit .userinfo_noavatar .rank, .postbit .userinfo .rank {
clear: both;
display: block;
font-size: 11px;
font-weight: bold;
}

So, pick what you want and then all some CSS to your additional.css template to change it on the page that needs to have it changed on.

Elixar
08-08-2014, 04:03 PM
I'm just wanting the first user title that is Junior Member to not be bolded.

Lynne
08-08-2014, 04:15 PM
Then add this:

.postbit .userinfo_noavatar .usertitle, .postbit .userinfo .usertitle {
font-weight: normal;
}

Elixar
08-08-2014, 04:18 PM
Add this to the additional.css template?

ozzy47
08-08-2014, 04:23 PM
Yes, as it states in her signature, "If I post some CSS and don't say where it goes, put it in the additional.css template."

Elixar
08-08-2014, 04:24 PM
Yes, as it states in her signature, "If I post some CSS and don't say where it goes, put it in the additional.css template."

Haha yeah I seen that, just wanted to check. :D

--------------- Added 1407518968 at 1407518968 ---------------

Awesome, thanks!