View Single Post
Old 06-30-2021, 06:29 PM   #7
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
There must be something else wrong in your books, because bold works perfectly fine.

Either of these is correct:

Code:
<p>This is <b>bold text</b>.</p>
<p>This is <strong>bold text</strong>.</p>
or:

Code:
<p>This is <span class="bold">bold text</span>.</p>
with CSS:

Code:
span.bold {
	font-weight: bold;
}
How are you testing this?

And where exactly is the bold not showing up?
Tex2002ans is offline   Reply With Quote