Hi all,
I am looking to create the below buttons text bold
URL: https://label-source.co.uk
Thank you
A user seeks to make button text bold in the Prestige theme on their Shopify store. They provide a screenshot showing the buttons in question on their slideshow section.
Proposed Solutions:
Multiple CSS approaches were suggested:
font-weight: bold; to .Slideshow__Content .ButtonGroup__Item in the theme.css file#section-template--14786425978922__slideshow .Button with font-weight: bold;font-weight: bold; to all .ButtonGroup__Item elementsImplementation:
All solutions involve editing the theme.css file (found in theme editor > assets) and adding CSS rules. The most targeted approach focuses on the specific slideshow section ID to avoid affecting buttons elsewhere on the site.
The discussion remains open with no confirmation from the original poster on which solution worked.
Hi all,
I am looking to create the below buttons text bold
URL: https://label-source.co.uk
Thank you
Try to add this code at the bottom theme editor > assets > theme.css file
#section-template--14786425978922__slideshow .Slideshow__Carousel .Slideshow__Content .SectionHeader__ButtonWrapper:after {
content: 'Your content';
color: white;
font-size: 20px;
font-weight: bold;
text-align: center;
display: flex;
padding: 5px 0 0 0;
}
try it and let me know
Add this CSS to make button inside slideshow bold,
.Slideshow__Content .ButtonGroup__Item {
font-weight: bold;
}
To make all buttons bold, add this css
.ButtonGroup__Item {
font-weight: bold;
}
Hello there
for the buttons specifically, use this
#section-template--14786425978922__slideshow .Button {
color: #363636;
border-color: #ffffff;
font-weight: bold;
}