Re: Blue links in app text

Solved

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

SuryaDesigns
Tourist
8 0 2

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)

Accepted Solution (1)

LamQSolutions
Shopify Partner
131 30 44

This is an accepted solution.

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;
}
Found my answer helpful? Please LIKE or Accept Solutions.
You may be interested in our apps
Scrolly Telling - Create scroll-based animations visually.
Ultimate Sections - Slideshow, Gallery, Collection, FAQs, Brand, Info box, Testimonial and more

View solution in original post

Replies 7 (7)

LamQSolutions
Shopify Partner
131 30 44

This is an accepted solution.

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;
}
Found my answer helpful? Please LIKE or Accept Solutions.
You may be interested in our apps
Scrolly Telling - Create scroll-based animations visually.
Ultimate Sections - Slideshow, Gallery, Collection, FAQs, Brand, Info box, Testimonial and more
SupportJudgeme
Shopify Partner
8 2 4

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.

SuryaDesigns
Tourist
8 0 2

Hey,

 

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

 

https://suryadesigns.be/ (bottom)

Judgeme
Shopify Partner
25 4 3

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.

Judge.me
SuryaDesigns
Tourist
8 0 2

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,

Judgeme
Shopify Partner
25 4 3

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.

Judge.me

Timon22
Tourist
3 0 5

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