Hi
Is it possible to change style of buttons to just underlined text.
I use Impulse theme.
A user wants to style buttons as simple underlined text instead of traditional button styling on their Shopify store using the Impulse theme.
Store Details:
Solutions Offered:
Three different CSS approaches were provided:
AnneLuoâs solution: Add custom CSS code above the </head> tag in theme.liquid file
ZestardTechâs solution: Insert CSS into hero.css file targeting .slideshow__slide--slideshow-0 .btn with properties including background: none, text-decoration: underline, and specific padding/font-size adjustments
PageFly-Ameliaâs solution: Add CSS to base.css or theme.css file with similar styling targeting the same slideshow button elements
All solutions focus on removing button backgrounds and adding underline text decoration using !important flags to override existing styles. The discussion remains open with no confirmation of which solution was implemented or successful.
Hi, @johanhallstrom
Can you share the store URL and take a screenshot to describe your requirements? So that I can assist you.
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag
Hopefully it will help you. If yes then Please donât forget hit Like and Mark it as solution!
Hello There,
.slideshow__slide--slideshow-0 .btn{
background: none !important;
text-decoration: underline !important;
padding:5px
}
.slideshow__slide--slideshow-0 .btn:hover{
background: none !important;
transition-delay: unset !important;
}
.hero__link a.btn {
font-size: 15px;
}
Hello @johanhallstrom
This is Amelia at PageFly - Shopify Advanced Page Builder app.
You can try the following steps I have provided to help you solve the problem you are facing:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file base.css or theme.css
Step 3: Add code
.slideshow__slide--slideshow-0 .btn{
background: none !important;
text-decoration: underline !important;
}
.slideshow__slide--slideshow-0 .btn:hover{
background: none !important;
}
Hoping my solution helps you solve your problem.
Best regards,
Amelia | PageFly