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
I need help ASAP. This button I created has a black border, outline or shadow that I can't get rid of. I've tried everything I found already online but I might've done it wrong, so I'm open to any suggestions.
Web: fredautoparts.com
Liquid:
<a href="#" class="order-btn button">Place Order</a>
CSS:
a.order-btn.button {
position: fixed;
display: inline-block;
right: 15px;
top: 90%;
border-radius: 28px;
font-family: Arial;
color: #000000;
font-size: 14px;
background: #f9dd33;
padding: 10px 30px 10px 30px;
margin-top: 20px;
font-size: 20px;
font-weight: medium;
z-index: 999;
}
a.order-btn.button:hover {
color: #ffffff;
background: #1890ff;
text-decoration: none;
}
Solved! Go to the solution
This is an accepted solution.
Check this one.
a.order-btn.button:before, a.order-btn.button:after {
box-shadow: none !important;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Check this one.
a.order-btn.button:before, a.order-btn.button:after {
box-shadow: none !important;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Wow. Thank you so much! You're a life saver.
Hello @Fredautoparts ,
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>add this code at the bottom of the file.
a.order-btn.button:after {
box-shadow: none !important;
}
iCart Cart Drawer Cart Upsell App
Hello @Fredautoparts ,
You can try this code: it will be helpful to you.
Go to the Online Store->Theme->Edit code->Assets->base.css>add this code at the bottom of the file.
a.order-btn.button:after {
box-shadow: none !important;
}
iCart Cart Drawer Cart Upsell App