Comment on page
Bold Heading
You may have noticed in the demo version of Nova that some words of the headline are in bold. While it is not possible to do this directly through Ghost’s admin panel, you can change underlying theme code to accomplish this. Here’s how:
Visit https://strnmns.github.io/bolder/ and in the text field, enter your site’s heading. Then, select the words you want to bold and click the “Bold” button. Once done, click the “Copy HTML” button.
Then, open
default.hbs
and find this line of code:<title>{{meta_title}}</title>
Replace
{{meta_title}}
with the copied HTML:<title>Paste the copied HTML here</title>
Save the changes with Cmd/Ctrl + S.