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

Feather theme - remove container shadows and ugly thick button outline

Feather theme - remove container shadows and ugly thick button outline

SpiceEggplant
Visitor
2 0 0

SpiceEggplant_0-1751561007073.png

How do i remove this ugly thick button outline in Feather theme and how do I remove container shadows? Every time I try overriding it just does this (screenshot 2)

SpiceEggplant_1-1751561107041.png

 

Replies 2 (2)

suyash1
Shopify Partner
11112 1367 1751

@SpiceEggplant Can you please share this page link?

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com
SpiceEggplant
Visitor
2 0 0

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;
}