How do I add visual contrast to links? (Brooklyn Theme)

Solved

How do I add visual contrast to links? (Brooklyn Theme)

guijacomin
Tourist
4 0 0

Hi there, I'm using Brooklyn theme and I didn't find out how to contrast the links.

For example, on the cart page, the word 'here' contains a link, but it doesn't look like so.

I would like to add hover ou underline the link.

Here's a link directly to the cart page: https://shufflesamples.com/cart

LINKS.png

 

Accepted Solution (1)

suyash1
Shopify Partner
9886 1229 1570

This is an accepted solution.

@guijacomin- do you want each and every link to have underline? if yes then add this css to the very end of your theme.scss.css file

a {
    text-decoration: underline;
}

if you want for here only then add this css

.cart--continue-browsing a{text-decoration: underline;}
To build shopify pages use pagefly | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30. | Support me

View solution in original post

Reply 1 (1)

suyash1
Shopify Partner
9886 1229 1570

This is an accepted solution.

@guijacomin- do you want each and every link to have underline? if yes then add this css to the very end of your theme.scss.css file

a {
    text-decoration: underline;
}

if you want for here only then add this css

.cart--continue-browsing a{text-decoration: underline;}
To build shopify pages use pagefly | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30. | Support me