Skip to main content
Topic: Bold Error (Read 1881 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Bold Error

Image should be self-explanatory. Can anyone direct me to where this could be fixed? Theme edit or...?

Basically, my users can't make their text bold for some reason. :)

Re: Bold Error

Reply #1

on my install I don't have this problem
sorry for my bad english

Re: Bold Error

Reply #2

Quote from: Auctor Lucan – Image should be self-explanatory. Can anyone direct me to where this could be fixed? Theme edit or...?

Basically, my users can't make their text bold for some reason. :)
It is indeed most likely to be an issue with your theme's CSS, unless you're modifying the BB-codes through an extension.

Re: Bold Error

Reply #3

Frenzie has it right .... Your main index.css style sheet has the following:
Code: [Select]
strong {
color: #ffa50a;
font-weight: normal !important;
}
So you are forcing strong (bold) text to be normal.

Not knowing why you did that, you could probably open up the _dark/index_dark.css file and change
Code: [Select]
strong {
font-weight: bold;
}
to target just the bbc version of strong (bold) as
Code: [Select]
strong.bbc_strong {
font-weight: bold !important;
}
But again not knowing why you globally changed strong that may not be what you want.

 

Re: Bold Error

Reply #4

I have no idea why it is that way, but seems like an easy fix. Thanks! :)