How can I change the color of blue links in my webshop app text?

Hey,

can someone help me with this problem?

i added a wishlist and judge.me app on my webshop, but the links shown on my pages are blue.

I want them to be the same colors as the dawn theme.

link: https://suryadesigns.be/en/products/aftelkalender-sinterklaasliedjes (notice the blue links)

Hi, To fix this problem, you can add the following code at the bottom of the file assets/base.css

#ZlistWishlist a,
#judgeme_product_reviews a {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}

Hello there,
To fix the color for the write-a-review button in Judge.me Review Widget, you can insert the following css in base.css file :

.jdgm-ask-question-btn, .jdgm-write-rev-link {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}

However, if you are not sure how to do it, please feel free to reach out to us at support@judge.me and we will be glad to help you out fixing the blue color in Judge.me widget button.

Hey,

Also have a solution for the blue links in the judge.me carrousel on the home page?

https://suryadesigns.be/ (bottom)

Hello there,

Thank you for contacting Judge.me

You can use this CSS to change the product title color in the carousel

.jdgm-carousel-item__product-title {

color:

}

Let us know if you have any question or need further assistance.

Hey,

and could you also help me with the verified label and “v” that are also blue.

I also want them in an other color.

https://suryadesigns.be/products/archeologie-discovery

kind regards,

Hello there,

Thank you for reaching us.

You can change it using the CSS below

.jdgm-rev__icon::after, .jdgm-rev__buyer-badge {
background-color: #000000 !important;
}

Make sure to change the #000000 with the code color you want.

Let us know if you have any more questions at all and have a good day.

Den folgenden Code kannst du in die base.css einfügen, damit die Links schwarz und nicht unterstrichen werden:

a {
color: black;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

Mein Theme: Dawn