Hi. Does anyone know if its possible to change the underline link in text link. So I don’t want to change the color of the text just the underline.
For example like this site. https://www.jcrew.com/ca/
In the “We can’t keep these in Stock section” The text is black and the underline is grey.
If you are talking about the text decoration underline it is possible with some custom code but it is not an option in Webflow.
Anyhow most of the time this type of effect is not accomplished with text decoration.
You could instead go with the border bottom property. You will be able to set the colour of it separately from the text colour.
Just a side note as borders are changing the flow of the document try to avoid setting a different border size on hover otherwise you might end up with some shifting of surrounding elements.
But instead set the colour to transparent on normal state and your desired colour on hover.
I forgot to mention, you need to change the default style of links first. Select the all link tag selector and apply the style of text decoration : none.
That was it. On to the next challenge; getting the border to be the width of the text and not the whole width of the column. I am thinking its a put a div within in a div situation.