On my Sixhours theme I am trying to change the text size for the <h1> tag but I cannot find it on the style.css or the editor-syle.css Can anyone tell me where to find the h1 to h6 tags?
On my Sixhours theme I am trying to change the text size for the <h1> tag but I cannot find it on the style.css or the editor-syle.css Can anyone tell me where to find the h1 to h6 tags?
If there is no font size specifically set, an element (i.e. h1) uses the default size. To change that, you can just add this to your stylesheet:
h1 {
font-size: ??px;
}
This may also be helpful:
http://codex.wordpress.org/Playing_With_Fonts
Thanks, but I am still new to html etc.
Where in the style sheet should this go? What precedes it and what follows it?
You must log in to post.