All things Shopify and commerce
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
Hello I’m having a problem with buy buttons when im checking my cart of URL: https://trendblend.eu/cart
the problem is on the second picture. The pay button is blank with no text and there is a lot of empty place (colored blue) in between the Apple and Google Pay. If you know the solution please let me know. Thanks in advance!
Hi @TrendBlend,
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file -> Save
button#checkout {
color: black !important;
}
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Hello @TrendBlend
Go to online store ---------> themes --------------> actions ------> edit code-------> base.css
and add this code at tyhe end of the file.
button#checkout {
color: black !important;
}
The result will be
let me know if the issue is solved
Thanks
Hi @TrendBlend
Please put this css in theme.liquid before body closing tag
<style>
button#checkout {
background-color: #2278ff !important;
color: #ffffff !important;
}
</style>
Thanks!