Hi,
Is it possible to make the read more links in the Blog articles module an image?
Kind regards
Hi JBkvns!
Try adding this to your custom CSS.
.read-more-link a {
left: -9999px;
}
.read-more-link {
color: red;
background: red;
position: absolute;
bottom: 0px;
right: 0px;
width: 30px;
height: 30px;
overflow: hidden;
}
.read-more-link:after {
content: ">";
color: white;
position: absolute;
bottom: 5px;
right: 9px;
font-size: 18px;
}
Best regards,
Elliott
Awesome, works! Thanks!
Kinds regards