Theme CSS Override:

Issue: Sometimes, the WordPress theme you are using might override the default bold styling with custom CSS, preventing bold text from displaying as expected.

Solution:
Inspect your website’s CSS using the browser’s developer tools to check if the font-weight property for bold text (<strong> or <b>) is being overridden.
You can add custom CSS to your WordPress theme or use a plugin like Simple Custom CSS to manually enforce bold text styling:

Here is simple steps without plugin
1) Appearance
2) Customize

Scroll Down all the way
3) Additional CSS

Copy and paste that code into the Additional CSS

strong { font-weight: 700; }

Make sure to save it

That’s all

Support team: Dan Phillips

Web host answers