Did you use a child theme?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
It’s not a <h1> element on the Post page, unlike the Home page.
Thanks, but the only CSS I can find for this is the site-title class. That’s how I styled it on the home page. I don’t understand what CSS is styling it on posts.
I meant ID, not class. Anyway, if I go:
#site-title h1 {
padding-top:0;
}
for the post site-title, it does not change:
#site-title {
padding-top:65px;
}
for the site-title on the home page. I must be missing something.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Clear your browser’s cache.
I always clear my cache, but thanks.
I figured it out, the problem was I had to write the CSS THIS way:
h1#site-title {
padding-top:20px;
}
NOT the way in my previous post. Duhhh.
And then I have this for the site-title div:
#site-title {
padding-top:60px;
}
Thanks! Your H1 / non-H1 tip helped me figure it out.
… except to make it perfect, it’s more like 68px, not 60px…