ACTUALLY (Sorry Ben) there does seem to be something amiss, now that it’s working.
I’ve been able to successfully change the font for the paragraph and post titles (which, through trial and error I figured out were ‘Heading 2’), BUT I can’t seem to change the font SIZE for the post titles. Dragging the slider doesn’t do anything (it works fine for the Paragraph font, but not the H2).
There doesn’t seem to be anything in my custom CSS (which is probably a bit muddled as it has undergone various additions).
Here’s the custom CSS:
.blog .post-content,
.archive .post-content,
.search .post-content {
text-align: left;
border-radius: 35px;
}
body {
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
.max-width {
max-width: none;
}
.featured-image img {
border-radius: 15px 15px 0 0;
overflow: visible;
padding-bottom: 0;
height: auto;
line-height: 0;
text-align: center;
> img,
> a > img {
position: static;
height: auto;
width: auto;
object-fit: contain;
}
> a {
position: static;
}
}
.entry article {
border-radius: 15px;
}
.entry.has-post-thumbnail article {
border-radius: 0 0 15px 15px;
}
So, there doesn’t seem to be anything preventing me from changing the font size of the post main headings, but I can’t seem to do it.
I know there’s a lot here. Sorry again!