Hi
Pls can someone provide a solution to changing the PayPal icon to white by code or replacing it with a different image attached example below: (to see the PayPal button u need to view on google chrome)
Theme: warehouse
current result:
A user seeks to change the PayPal icon color to white on their website, either through custom code or by replacing it with a different image. They’re using a specific theme and have provided example URLs showing the current implementation.
Proposed Solution:
Another participant suggests adding CSS code to the theme’s theme.scss file that targets the PayPal SVG icon and forces its fill color to white using !important. An alternative snippet is offered to change all dynamic checkout icons to white.
Current Status:
A third user reports the proposed CSS solution did not work on the Focal theme—the PayPal button remains gold regardless of the code applied. The issue remains unresolved, with no working solution confirmed yet.
Hi
Pls can someone provide a solution to changing the PayPal icon to white by code or replacing it with a different image attached example below: (to see the PayPal button u need to view on google chrome)
Theme: warehouse
current result:
The following code should work for you if you only want the PayPal icon to be white. Add it to the bottom of Assets > theme.scss in your theme code editor.
#shopify-svg__payments-paypal path {
fill: white !important;
}
If you want all dynamic checkout icons to be white, use the following:
.shopify-cleanslate path {
fill: white !important;
}
Tried this but did not work. The theme is Focal and the dynamic button stays gold for Paypal no matter what