We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Button & Hyperlink became white like disappeared

Solved

Button & Hyperlink became white like disappeared

henrylauhs
Tourist
12 0 1

Hi there,

 

Any of you encountered below experiences?

1. I called one of the page content as collapsible row in product page. The hyperlink looks fine when i browse the page. however, the color of hyperlink within collapsible row will turn white.
Example: https://sippinhk.com/products/%E4%BA%8C%E5%85%94-%E6%84%9B%E5%B1%B1-48-%E7%B4%94%E7%B1%B3%E5%A4%A7%E...
(Can check the 2nd collapsible row)

2. When I choose variant in featured collection, a pop-up page will show up but the add-to-cart button will turn white just like disappear. Feel free to check in featured collection in the main page.

 

Anyone has clue how to fix them?

 

Thanks in advance.

Accepted Solution (1)
Guleria
Shopify Partner
4299 825 1189

This is an accepted solution.

Where did you add the css ?
If you are not sure how to use the css please do this alternate edit theme.liquid search for </body> now just before to it add the css with style tag. 
<style>
.accordion__content a {
    color: #000;
}
quick-add-modal .button {
    background: #000 !important;
}
</style>
- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.

View solution in original post

Replies 6 (6)

Small_Task_Help
Shopify Partner
1144 55 112

Hi,

Hope this will help

Problem 1: Hyperlink in collapsible row turns white
-At theme.css, theme.scss.liquid, or base.css under the "Assets" folder.Add css

CSS code example

.collapsible-content a {
  color: #0000EE !important;  /* Makes link text blue */
  text-decoration: underline; /* Makes it look like a link */
}


Problem 2: Add-to-Cart button turns white in pop-up (variant selector)

At css file , add css and Replace .popup and .product-form__submit with your actual classes (use Inspect tool again to confirm them).


CSS code example

.popup .product-form__submit {
  background-color: #000000 !important;  /* Makes background black */
  color: #ffffff !important;             /* Makes text white */
}

 

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Developers India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
henrylauhs
Tourist
12 0 1

Thank you for prompt reply but it does not work.

Guleria
Shopify Partner
4299 825 1189

Hello @henrylauhs ,

 

Add below css in base.css you can find it under assets.

1) 

.accordion__content a {
    color: #000;
}

2)

quick-add-modal .button {
    background: #000 !important;
}

 

Regards
Guleria

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
henrylauhs
Tourist
12 0 1

Thank you for prompt reply but they do not work.

Guleria
Shopify Partner
4299 825 1189

This is an accepted solution.

Where did you add the css ?
If you are not sure how to use the css please do this alternate edit theme.liquid search for </body> now just before to it add the css with style tag. 
<style>
.accordion__content a {
    color: #000;
}
quick-add-modal .button {
    background: #000 !important;
}
</style>
- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
henrylauhs
Tourist
12 0 1

Thank you! fixed