How to display bold and underlined links in blog posts?

Hi,

We are working on our first blog posts, and are linking to products within the text. But the links are not showing up underlined or bold. How can we show the links within the text as bold and underlined? For example, we would like the links to look exactly how they look in our collections shown here: https://thosewhobloom.com/collections/postcards

Thanks for your time!

I need something like this but for blogs:

.product-single__content-text a {
text-decoration: underline;
font-weight: 900;
}

.article__content p a {
text-decoration: underline;
font-weight: 900;
}

1 Like

.article__content div a {
text-decoration: underline;
}

1 Like