LukeWolf
Member
Hey there.
I am really sorry to ask such as simple question, but I have been trying to find an answer that I understand and I really can't.
All I want to do is make the text in my thread prefixes bold.
Bold works inside the thread, on the forum index and when selecting a prefix but it's not bold on the thread view.
Have a look:
It works here:
But not here:
Here's the CSS that I changed in the ACP. I simply just added font-weight: bold; at the end of this block:
core_labels.less
Any help would be appreciated, I don't normally work with CSS or with forums for that matter.
I am really sorry to ask such as simple question, but I have been trying to find an answer that I understand and I really can't.
All I want to do is make the text in my thread prefixes bold.
Bold works inside the thread, on the forum index and when selecting a prefix but it's not bold on the thread view.
Have a look:
It works here:
But not here:
Here's the CSS that I changed in the ACP. I simply just added font-weight: bold; at the end of this block:
core_labels.less
CSS:
.label
{
display: inline-block;
padding: 1px .35em;
border: 1px solid transparent;
border-radius: @xf-borderRadiusMedium;
font-size: 80%;
line-height: ((@xf-lineHeightDefault) * .9);
text-decoration: none;
font-weight: bold;
}
Any help would be appreciated, I don't normally work with CSS or with forums for that matter.