How to make headings not bold?

Becky Clutter May 13, 2016

I have changed the font of the headings using custom CSS, but the text for H3, H4, H5, and H6 is still bold, which is the default if you're using the regular Confluence theme. This is the code that I am using:

.wiki-content h1, h2, h3, h4, h5, h6 {
    font-family: 'Antic Slab', Rockwell, serif;
    font-weight: normal;
    }

font-weight should be working, but it's not! Any suggestions?

Thanks in advance!

1 answer

1 accepted

1 vote
Answer accepted
Sean Curtis
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 15, 2016

Your CSS is missing some specificity. I'd recommend splitting rules over multiple lines, it allows you to spot issues like this. Eg:

.wiki-content h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Antic Slab', Rockwell, serif;
    font-weight: normal;
}
 
/* Should be like this instead... */
 
.wiki-content h1,
.wiki-content h2,
.wiki-content h3,
.wiki-content h4,
.wiki-content h5,
.wiki-content h6 {
    font-family: 'Antic Slab', Rockwell, serif;
    font-weight: normal;
}
Becky Clutter May 25, 2016

Thanks, Sean!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events