Hi there!
I’d like to know the following:
How do I put the Variant section in the CENTER?
How do I change the Variant option name’s SIZE?
How do I manipulate the unchecked variant label
Currently using the following for the checked label:
.variant-input-wrap input[type=radio]:checked+label
{
position: center;
padding-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
font-weight: 525;
box-shadow: 0 0 0 2px #fff ;
background: #000 ;
color: #fff ;
border-radius: 30px;
}
Store: pinsowl.com
1 Like
made4Uo
September 6, 2022, 4:59pm
2
Hi @blcksjfds
For request #1 and #3 , please follow the instructions below.
From your Admin Page, click Online Store > Themes >Actions > Edit code
In the Asset folder, open the base.css
Paste the code below at the very bottom of the file.
fieldset.variant-input-wrap {
display: flex;
justify-content: center;
}
.variant-input label {
border-radius: 10px;
background: red;
}
For request #2 , you have to change it in your product Admin.
From your Admin Page, click Product
Select the product, go to Options
Change the Size
1 Like
Hi there!
It almost worked! However ‘‘color’’ didn’t move to the center. And I’d wish to know how I could make this bigger. Also, do you know how I can change the thickness of seperator above color?