- This topic has 10 replies, 2 voices, and was last updated 9 years, 4 months ago by .
Viewing 11 posts - 1 through 11 (of 11 total)
Viewing 11 posts - 1 through 11 (of 11 total)
- The topic ‘Headings and Fonts’ is closed to new replies.
Home › Community Forums › Legacy Theme Support › Headings and Fonts
How do you change the font setting in all headings ?
I have changed color but the font sizes stay the same ? even after I changed them in legacy css and genesis css
Do you have a link to the exact place you’re trying to do this?
I just need the line where the codes are at, I find it surprising that the size does not change even tho the color did
Did you remember to change the “rem” to match the “px”. Most browsers will use the “rem” over the px. You could just remove the “rem” if you want to test it until you get the size you want.
The headings are located around line 242 in your css –
/* Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
color: #333;
font-family: 'Oswald', Helvetica, Arial, sans-serif;
font-weight: 400;
line-height: 1.5;
margin: 0;
margin-bottom: 16px;
margin-bottom: 1rem;
padding: 0;
}
h1 {
font-size: 10px;
font-size: 1.0rem;
color: #750514;
}
h2 {
font-size: 18px;
font-size: 1.875rem;
}
h3 {
font-size: 18px;
font-size: 1.5rem;
}
h4 {
font-size: 18px;
font-size: 1.25rem;
}
h5 {
font-size: 18px;
font-size: 1.125rem;
}
h6 {
font-size: 16px;
font-size: 1rem;
}
Wes
Did you see the H1
h1 {
font-size: 10px;
font-size: 1.0rem;
color: #750514;
}
That’s what I set it to to change and nothing happened, that is set at 10px
Thanks
Any response ?
The rem should be this –
10px = 0.625rem
Wes
Got it, thanks, also
where is the title font located
The one here that says test page http://69.89.31.111/~glutexco/test
Dave
Wes
Found it
Thanks
You’re Welcome!