Archived topic
Home page links
3 replies · Started by Ryan on June 29, 2022
I have a couple of links on my home page that lead to blog posts. I want to modify these links (color, text size) but having trouble doing so. In Customize > Typography I found that the links are under the setting Base > Body but when I change these, it modifies the text on my whole site. I only want to change the style of this text on the home page. Is there any way to do this?
Hi there,
the links are in the image captions, to style them specifically add this CSS:
figcaption a {
color: #000;
}
figcaption a:hover {
color: #f00;
}
Awesome. Thanks David.
Thank you