How can I unbold product variant options on my page?

Solved

How can I unbold product variant options on my page?

MrP
Excursionist
49 0 9

Can you suggest a way to unbold the variants shown on my product page (ringed in red)?
Or perhaps only have the selected one bolded?

I feel both bold is confusing

 

Screen Shot 2023-01-02 at 1.15.55 pm.png

Accepted Solution (1)
Angel95
Pathfinder
101 6 8

This is an accepted solution.

Hello,

 

.swatch .swatch-element label {
font-weight: 500;
opacity: 0.7;
}
.swatch_options input:checked+.swatch-element label {
font-weight: 700;
opacity: 1;
}

please put the css in the style.css part 

banned

View solution in original post

Replies 4 (4)

Angel95
Pathfinder
101 6 8

Hello,

 

For that we need to apply the css. Can you share me the store URL so i can send you the css for that.

 

 

banned
MrP
Excursionist
49 0 9
Angel95
Pathfinder
101 6 8

This is an accepted solution.

Hello,

 

.swatch .swatch-element label {
font-weight: 500;
opacity: 0.7;
}
.swatch_options input:checked+.swatch-element label {
font-weight: 700;
opacity: 1;
}

please put the css in the style.css part 

banned
MrP
Excursionist
49 0 9

that's awesome. thanks 😎