each theme used may be different
you will want to look in theme’s style.css for relevant code
without knowing theme or without a link to site, there’s no way to tell you the relevant code
The theme is the default one (the blue one)? Is it called Akismet?
no it’s just called “default”
look in default theme’s style.css for this
h1 {
font-size: 4em;
text-align: center;
}
change the font size to something smaller
as you make changes to default theme, you will need to save them as the default theme is overwritten with each auto upgrade
What about the font style?
And will changing to another theme reset this code?
changing to another theme means that theme’s stylesheet will be used – so, yea this code will not carry over
different themes will have differing H1 sizes
font styling is right above other line I posted
h1, h2, h3 {
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
font-weight: bold;
}
Thanks samboll 4 your timely help.