How to make font bold in Prestige theme?

Topic summary

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:

  • Target slideshow buttons specifically: Add font-weight: bold; to .Slideshow__Content .ButtonGroup__Item in the theme.css file
  • Target by section ID: Use #section-template--14786425978922__slideshow .Button with font-weight: bold;
  • Universal button styling: Apply font-weight: bold; to all .ButtonGroup__Item elements

Implementation:

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.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

Hi all,

I am looking to create the below buttons text bold

URL: https://label-source.co.uk

Thank you

Hi @Danielparsons

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