Wordpress - How to Bold Blog Titles

Hi,

I am using Wordpress for my blog. I realised the blog titles are not in bold.

How do I bold it using CSS?

Thank you for any helo rendered.

Hi @lancekuanquestbiz ā€” Welcome to these forums. :slight_smile:

Presumably you are working with a pre-made theme that has its own CSS styles. Thereā€™s probably some styling in there that specifically sets the headings to be normal weight, so you could dig into that and undo it.

However, the general advice I see is not to mess with the themeā€™s default code, but instead set your own custom styles. Thereā€™s a spot in WordPress where you can write your own styles to override the theme styles.

Feel free to post a link to your site so we can suggest what styles to use. In the meantime, look up ā€œWordPress custom stylesheetā€ to work out how you can access that custom stylesheet.

Thanks ralphm,

Unfortunately I am not technically trained on coding and such.

Nevertheless, the websites are:

https://sghomeinvestment.com/
https://laaasia.com

Really appreciate your advice.

1 Like

Hm, they actually are in bold, unless Iā€™m looking at the wrong ones. Can you point to the headings you thing arenā€™t bold? Maybe youā€™d like them even bolder?

If you are referring to the title ā€˜Singapore Property Review of New Titlesā€™, the selector to override that style is
.entry-content h1 strong. ā€” Not quite sure why you need that inner strong tag in your html.

As ralphm has said these appear to be bold anyway, but if you would prefer to go with heavy you could use the following css.

e.g.

.entry-content h1 strong {
  font-weight: 900;
}

This can be added to appearances ā†’ Customize CSS

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.