Archived topic
Amend Heading 6 Font in Wordpress
5 replies · Started by Craig Nicholson on July 3, 2015
Hi was wondering if there was a way in which i could use GeneratePress to configure Heading 6 font and colour?
when creating a page i see heading 6 is there but i can't amend the heading in generate press
anyone got any ideas how i can amend the heading 6 to black and font size 10?
thanks
You can use some super simple CSS for this:
h6 {
font-size: 10px;
}
thanks tom and what do i add for making it black?
i know the colour is #000000
but what should i add?
thanks again
This should do it:
h6 {
font-size: 10px;
color: #000000;
}
you're awesome - resolved
thanks mate
Happy to help :)
