Shopify themes, liquid, logos, and UX
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
@SpiceEggplant Can you please share this page link?
Thanks for reaching out,
I figured it out already, I pasted this code chatgpt wrote for me into base.css:
/* === CLEAN AND STYLE ONLY BUTTONS === */
button,
.button,
.shopify-payment-button__button {
all: unset;
display: inline-block;
padding: 0.8rem 2rem;
border: 1px solid black;
border-radius: 9999px; /* pill-shaped */
background-color: white;
color: black;
font-size: 1.4rem;
text-align: center;
cursor: pointer;
box-shadow: none !important;
width: auto;
}
/* === HOVER STATE === */
button:hover,
.button:hover,
.shopify-payment-button__button:hover {
background-color: black;
color: white;
}
/* === REMOVE THEME-INJECTED STYLING ON BUTTONS === */
button::before,
button::after,
.button::before,
.button::after {
content: none !important;
box-shadow: none !important;
background: none !important;
border: none !important;
}