Hey there jecn100,
How are you doing today?
This should be possible with some custom CSS. This is as simple as adding background color, some padding etc to the links where you want this. You can see examples here http://www.w3schools.com/css/css3_buttons.asp.
If you need help with this please post link to your site where I can see those links and I’ll be happy to help 🙂
Cheers,
Bojan
Hi Bojan,
Thanks for reply the problem is there is no class to style the read more link in theme it is simple a link a the bottom of the text if you now what i mean.
What i require is the place in the theme file where i would add the class so it can be styled.
Thanks,
Justin
Hey Justin,
You can still be able to target that link with some specificity, I checked the theme on my sandbox site and something like this should work:
.blog .postcontent .entry-content p a {
padding: 5px;
background: #ccc;
border-radius: 5px;
color: #fff;
}
Of course you’d want to apply your own styles to it but the selector works properly.
Let me know if this helps 🙂
Cheers,
Bojan