Hi
I’m trying to streamline my website and there has been multiple times where I’ve added custom code to the CSS via theme x > options > custom CSS.
But I’m not sure its as neat as it should be. For example I have
.service h3 {
margin: 0;
font-size: 36px;
line-height: 1;
color: #e17d4a;
}
.service h3 strong {
display: block;
margin-top: 2px;
font-size: 0.75em;
}
The I also have the size controlled in appearance > customise > Additional CSS
h3 {
font-size: 21px;
}
three different entries for the same tag or ‘strong’ variant of it.
My questions are:
- What is ‘.service’ for? is it necessary?
- Where is the correct place to adjust the header font size? All the other font sizes are controlled via theme x > options > typography. Is there a similar place to control headers?
- If I should control the header tags via CSS will the following work (if put in the custom CSS in them options):
h3 {
margin: 0;
font-size: 1.5em;
line-height: 1;
}
Thanks in advance!
Elizabeth