Bold and underline internal blog links

Hi, I would like to bold and underline the links I have added into my blog posts. I would also like to change the colour for these only. I have been to appearance-customizer but this only allows me to change the colour for all site links which I don’t want to do. Thanks, Laura

Hi there,

Thanks for writing in.

Is it the links within the content? You can do that by adding this CSS to your global custom CSS.

.single-post .entry-wrap a {
color: #000 !important;
text-decoration: underline;
}

Thanks!

That worked - thanks! Can you also give the code so I can change the hover colour? Thanks so much, Laura

Hi There,

Thanks for the confirmation!
You can use this CSS for hover color.

.single-post .entry-wrap a:hover  {
color: #fff !important;
}

Please use your color code in place of #fff

Hope this helps!

Perfect, that worked. Thank you!

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.