Nova Docs
PreviewAboutStyle GuideBuy Now
  • Getting Started
    • Introduction
  • Fundamentals
    • Installation
    • Customization
    • Add Menu Items
    • Enabling Comments
    • Editing Theme
  • Code-level Changes
    • Removing Animations
    • Bold Heading
    • Removing Post Meta
Powered by GitBook
On this page

Was this helpful?

  1. Code-level Changes

Bold Heading

PreviousRemoving AnimationsNextRemoving Post Meta

Last updated 2 years ago

Was this helpful?

Requires changing theme code. See Editing Theme for more info.

You may have noticed in the 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 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.hbsand 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.

Applying changes

Once you’re done making these changes, visit to apply changes to your Ghost blog.

demo
https://strnmns.github.io/bolder/
Applying changes