ElkArte Community

Project Support => Support => Topic started by: Auctor Lucan on April 12, 2017, 09:56:33 am

Title: Bold Error
Post by: Auctor Lucan on April 12, 2017, 09:56:33 am
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. :)
Title: Re: Bold Error
Post by: radu81 on April 12, 2017, 11:00:27 am
on my install I don't have this problem
Title: Re: Bold Error
Post by: Frenzie on April 12, 2017, 11:53:27 am
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.
Title: Re: Bold Error
Post by: Spuds on April 12, 2017, 11:57:16 am
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.
Title: Re: Bold Error
Post by: Auctor Lucan on April 12, 2017, 06:27:35 pm
I have no idea why it is that way, but seems like an easy fix. Thanks! :)