Aligning variant picker dropdown boxes to the right

Solved

Aligning variant picker dropdown boxes to the right

ConfuzedPenguin
Tourist
5 0 1

Hi, 

I'm looking to move the variant picker drop down boxes to the right hand side of the product page. So far I've worked out how to move the headers to the boxes to the right of the box, but that's it. Can anyone suggest a solution. I'm using the Dawn theme, I'm no expert with the coding side of the process but I can work by way around (usually lol).

Thanks in advance for any help.

 

Screenshot 2025-03-16 171825.png

 

 

 

Accepted Solution (1)
kayakakan
Shopify Partner
18 2 5

This is an accepted solution.

Sorry for omitting that:

  1. On your Admin dashboard go to Online Store → Themes
  2. Click the Customize button for your theme
  3. Go to Settings ; there's a gear icon on the left panel
  4. Paste the code in the Custom CSS box

If it doesn't work add !important right before the semi-colon ';' of each line that has it. Hope this is clear enough.

View solution in original post

Replies 7 (7)

kayakakan
Shopify Partner
18 2 5

Hello, please provide the link to your store so we can inspect it and propose some solutions.

ConfuzedPenguin
Tourist
5 0 1

sure thing, its www.rhiannonstalons.co.uk 

kayakakan
Shopify Partner
18 2 5

Ok, try this and tell me if it's the desired look: 

variant-selects {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
ConfuzedPenguin
Tourist
5 0 1

Where should I enter the code?

kayakakan
Shopify Partner
18 2 5

Sorry for omitting that.

  1. In your Admin dashboard go to Online Store → Themes
  2. Click on the Customize  button for your theme
  3. Go to Settings ; on the left panel there's a gear icon
  4. Paste in the Custom CSS box

If it doesn't work add !important before each line that ends with ';'

kayakakan
Shopify Partner
18 2 5

This is an accepted solution.

Sorry for omitting that:

  1. On your Admin dashboard go to Online Store → Themes
  2. Click the Customize button for your theme
  3. Go to Settings ; there's a gear icon on the left panel
  4. Paste the code in the Custom CSS box

If it doesn't work add !important right before the semi-colon ';' of each line that has it. Hope this is clear enough.

ConfuzedPenguin
Tourist
5 0 1

That worked great, thanks.