Re: Bold letters in Heading
So, the topic title, like “Bold letters in Heading” here? Only on the topic page?
You need to find this in style.css:
.topictitle {
font-size: 26px;
font-weight: normal;
display: inline;
}
and change the font-weight to bold, like this:
.topictitle {
font-size: 26px;
font-weight: bold;
display: inline;
}
It’s all controllable with CSS. Most of the things you’ve wanted to change in the past couple weeks are just CSS modifications.