Archived topic
Read More Button Style
7 replies · Started by Marius on August 18, 2018
How can i style the Read More Button just like the Read More Button from WP Show Post Plugin. It should be like on Homepage.
Hi there,
Have you tried the options in Customizer > Colors > Buttons?
Or do you want it separated from the customizer options?
Let me know :)
Yes, i have tried the customizer. But there it is not possible, to make the button like the buttons from WPSP.
Hi there,
you could add the border to the read more like so:
a.read-more {
border: 2px solid #222;
}
Hi David, thanks, but I dont get it like I want to.
With which css code do I get the exact same More buttons with the same size like on homepage?
This CSS:
a.read-more, a.read-more:visited {
padding: 8px 15px;
border: 2px solid #222;
color: #222;
background-color: transparent;
font-size: .8em;
text-decoration: none;
}
a.read-more:hover {
background-color: #000;
color: #fff;
}
Hi David,
thanks a lot. Works perfect.
You're welcome