Hello
On this page https://northamericanmammals.com/wp-admin/post.php?post=3203&action=edit the H1 is hidden, it shows up when you highlight over it. I would like it in black and showing.
Thank you.
Hello
On this page https://northamericanmammals.com/wp-admin/post.php?post=3203&action=edit the H1 is hidden, it shows up when you highlight over it. I would like it in black and showing.
Thank you.
Hi Bryan,
Try adding the following CSS on Theme Options > Global CSS:
h1.h-landmark.entry-title {
color: black;
}
Above CSS is general. It will work on all h1 wit class h-landmark and entry-title. If you want it page specific, try this:
.page-id-320 h1.h-landmark.entry-title {
color: black;
}
Hope this helps.
Thank you Lely, how do I make the font bigger. It seems very small compared to posts.
Hello Bryan,
To make the font bigger, simply update the code and add font size property:
h1.h-landmark.entry-title {
color: black;
font-size: 2.4em;
}
Please let us know if this works out for you.
Perfect, thank you very much.
You’re welcome!
It’s good to know that it has worked for you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.