Underline under category bubble

Hi, i want a underline as described on this picture. Is it possible with a code?

Url: https://ba571d-cc.myshopify.com/

dawn theme 15.0.0

Thank you.

Please add the CSS code below at the end of your base.css file.

.collection-list-wrapper .card__heading{
text-decoration: underline;
}

Thank you very much for your help and time, but I only want the underline there when I move my mouse over one of the images or text as described in the image.

Best regards

  • Here is the solution for you @store095
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.collection-list__item a.full-unstyled-link:hover {
    text-decoration: underline !important;
}
  • Here is the result you will achieve when hover:

  • Please press ‘Like’ and mark it as 'Solution’ if you find it helpful. Thank you.

Its working. Thank you. :slightly_smiling_face:

You are welcome!

Is it possible to do the same for mobile Version too?

Best Regards

a.full-unstyled-link:hover {
    text-decoration: underline !important;
}

Can you add more this code @store095