hello, i would like to make my button outline a bit thicker. This is what it looks like currently:
i would like it to look something like this:
as you can see, the box outline is thicker.
my website is www.alexandrawestbrook.com , theme is dawn
A user seeks to increase the thickness of button outlines on their image banner. They provide before/after screenshots showing the desired thicker border effect on their Dawn theme store (alexandrawestbrook.com).
Three solutions were offered:
</body> tag, targeting button borders with increased thicknessAll three approaches use CSS to modify border thickness and padding properties. Each respondent provided code snippets and result screenshots demonstrating the thicker outline effect. The discussion remains open with multiple viable solutions presented but no confirmed resolution from the original poster.
hello, i would like to make my button outline a bit thicker. This is what it looks like currently:
i would like it to look something like this:
as you can see, the box outline is thicker.
my website is www.alexandrawestbrook.com , theme is dawn
Hey @ads18922
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @ads18922 .
Here’s how to achieve that:
#MainContent .banner__text.rte.body a {
padding: 11px 25px !important;
border: 2px solid white !important;
text-decoration: none !important;
}
If done correctly, the result should be like this:
Hello @ads18922
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> section-image-banner.css
add this code at the end of the file and save.
.banner--desktop-transparent .rte a, {
border: 3px solid #fff !important;
padding: 9px 20px !important;
text-decoration: none !important;
color: white !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks