Archived topic
Make part of header (link) look like a button
5 replies · Started by William on August 14, 2020
Viewing posts 1–6 of 6
Hi there,
Is there a way to make the link in the header element ("George Orwell" here) like a button, with hover effect?
Kind regards,
Will
Hi there,
Try something like this:
.page-hero #post_title a {
border: 1px solid #000;
padding: 5px;
}
You can see button styles here:
https://docs.generatepress.com/article/adding-buttons/
Unfortunately CSS cannot tell if there is content or not.
I've done some research and manage to make some CSS that does:
.page-hero #post_title :empty {
display: none;
}
Awesome!
Thanks for sharing!
This archived topic is closed to new replies.