Why does the font on my details page alternate between bold and normal?

Topic summary

Font weight on product detail tabs (“Details,” “Washing instructions,” “Size chart”) toggles between bold and normal on click; requester wants the labels to remain bold.

  • Root cause: A state-based CSS rule tied to the active tab (.station-tabs .station-tabs-tab.is-active) changes font-weight when tabs are toggled.
  • Site provided for reference: www.sixtwonine.de.

Proposed fixes:

  • Add an override in theme.scss.css to force persistent bold text:
    span.station-tabs-tabtext { font-weight: 600; }
  • Alternatively, locate and remove/comment the CSS rule targeting .station-tabs .station-tabs-tab.is-active that modifies font-weight.

Notes:

  • Screenshots were shared to illustrate the bold/normal change, but the issue is CSS-driven.
  • No confirmation that a fix was implemented; current status appears open pending the user applying one of the suggested CSS changes.
Summarized with AI on January 4. AI used: gpt-5.

Hello,

I got the following problem. If I click on the Details, washing instructions or the size chart the font somehow get bold. If I click on it again it gets normal. I don’t know why. How can I change it that it stays bold?

hi @Jokerdomme
share website url.

www.sixtwonine.de

Hello @Jokerdomme

Add this below code in theme.scss.css at the bottom of the file

span.station-tabs-tabtext {
    font-weight: 600;
}

this is the case. look for this css part somewhere in product template.
.station-tabs .station-tabs-tab.is-active
then just remove or comment it. this should help