The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Is there a code for un-bolding?

+2
Darren1
calibermispir
6 posters

Go down

Is there a code for un-bolding? Empty Is there a code for un-bolding?

Post by calibermispir April 26th 2011, 2:31 am

Hello,
Recently I changed my forums to a font that I really like, however, is it possible to insert a code that makes everything NOT bold, including topics, groups, and member usernames?

Thanks

Caliber Mispir
calibermispir
calibermispir
Forumember

Posts : 37
Reputation : 0
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Darren1 April 26th 2011, 3:21 am

Hi,

can you please check ur ranks to see if there is any [b] or <b> tags that aren't closed, and if there is please close it.
And if there isn't, try changing the default text from what it is now, to roman times numeral. If the text is no longer bold, I'd assume the boldness is caused by the font text it's self.
Darren1
Darren1
Helper
Helper

Male Posts : 11853
Reputation : 566
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by calibermispir April 26th 2011, 4:04 am

I'm sure that there aren't any closed tags/codes. I think it's just because the template I used makes the categories/sections, groups, and member usernames bold. I was hoping that I could insert a code to invert that, and make everything unbold. I'm absolutely positive that it's not the font itself.
calibermispir
calibermispir
Forumember

Posts : 37
Reputation : 0
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Darren1 April 26th 2011, 4:06 am

Can you check if there is any bold tags that aren't closed please, if necessary, check your templates.

I only asked to change the font, purely for troubleshooting purposes Wink
Darren1
Darren1
Helper
Helper

Male Posts : 11853
Reputation : 566
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Base April 26th 2011, 6:40 pm

If you could, please provide me with your forum link as well. Wink
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by calibermispir April 26th 2011, 11:46 pm

calibermispir
calibermispir
Forumember

Posts : 37
Reputation : 0
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by kirk April 27th 2011, 6:17 am

so what is all bold?
nothing seems bold to me?

either way there is no such thing as a un-blod code, your either using bold or your not.

there may be something in your css that you can change to remove the bold,
But once again i am unsure where and what text you are referring to, it dont appear to be bold to me.

can you post a screen shot as well so i can see what your seeing.
kirk
kirk
Forumaster

Male Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Stephen- April 27th 2011, 6:21 am

if bbcode here:
Code:
[b]  [/b] 

like darren1 said. Smile
Stephen-
Stephen-
Hyperactive

Male Posts : 2542
Reputation : 326
Language :

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Base April 27th 2011, 6:18 pm

I'm on the same boat as kirk with this problem. I don't see anything out of the ordinary in terms of boldness. A screenshot would help. Wink
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by calibermispir April 28th 2011, 12:38 am

Is there a code for un-bolding? Forumph
calibermispir
calibermispir
Forumember

Posts : 37
Reputation : 0
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Base April 28th 2011, 6:11 pm

Thank you. For the forum links, please add this to your CSS code:

Code:
.forumlink {
    color: #219FFF;
    font-size: 13px;
    font-weight: lighter;
}

For the usernames, please add this to your CSS code:

Code:
.gensmall {
    font-size: 12px;
    font-weight: lighter;
}
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by calibermispir April 28th 2011, 9:02 pm

Perfect! It worked! However, it didn't work for "Threads" and "Authors." Are there separate codes for those too?
calibermispir
calibermispir
Forumember

Posts : 37
Reputation : 0
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Nera. April 28th 2011, 9:37 pm

For topics:
Code:
a.topictitle:link {
    font-weight: lighter;
}

Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by calibermispir April 29th 2011, 2:02 am

The codes are working, however, whenever I click on a topic, the thread goes back to bold, as if "viewed" topics become bold.
Also, is there a way to unbold the author's listed on each thread/topic, too?

Thanks! You guys have been a big help to me so far!
calibermispir
calibermispir
Forumember

Posts : 37
Reputation : 0
Language : English

Back to top Go down

Is there a code for un-bolding? Empty Re: Is there a code for un-bolding?

Post by Nera. April 29th 2011, 8:24 am

I can't see it but give it a try. Add it to your CSS for topics.
Code:
a.topictitle:visited {
  font-weight: lighter;
}
a.topictitle:active {
  font-weight: lighter;
}
a.topictitle:hover {
  font-weight: lighter;
}

This for names
Code:
.name a {
    font-weight: lighter;
}
.name {     
 font-weight: lighter;
}
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum