- This topic has 3 replies, 2 voices, and was last updated 4 years, 4 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘customizing h1 – h6’ is closed to new replies.
I’m trying to change the h2 font size (specifically, my blog titles on the main page) and I can not seem to get this css to work. What is the proper code?
h2 {
font-size: 22px;
}
(if needed, website is kristinbytheocean.com)
Or another solution would be just making them disappear completely. Is there code to hide the post titles from the main page?
Use this code:
#grid-loop article .entry-title {
font-size: 24px;
}
or to hide the titles, use this:
#grid-loop article .entry-title {
display: none;
}
Beautiful, thank you Andy!