Hi all,
So I’ve been able to customize the colour of pinned links and custom footer links on my blog, but I don’t know the element name for the links in the body text, in order to change their colour. Can someone assist?
Hi all,
So I’ve been able to customize the colour of pinned links and custom footer links on my blog, but I don’t know the element name for the links in the body text, in order to change their colour. Can someone assist?
Include a custom css class in your CSS Customisations
Then instead of Markdown use regular HTML to insert your links ie.
<a href="link address here" class="your class"> your text</a>
To change the color of links elsewhere, this custom CSS should do it:
a {
color: red;
}