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!
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; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.