Solved

How can I align product variant names to the left?

thomasmrgn99
Pathfinder
102 0 34

Hi,

 

I have my variants centered on my product page, but I would like the actual variant names for size variant to be aligned to the left of the box. Is this possible?

 

Screenshot 2022-05-06 at 11.35.40.png

 

 

 

 

 

 

 

 

 

 

 

Website is https://pawcopets.co.uk/calmingbed

 

Appreciate any help!

Accepted Solution (1)

M-Usman
Shopify Partner
9 3 6

This is an accepted solution.

Hi @thomasmrgn99,

.header_picker {
text-align: left;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->custom.css.liquid

If my reply helpful? Then please 

Like

 and 

Accept Solution

.

View solution in original post

Replies 12 (12)

oscprofessional
Shopify Partner
15843 2371 3073

@thomasmrgn99 
Hi,

.theiaStickySidebar .btn-atc.atc-slide.btn_full_true.PR_no_pick_false.btn_des_2.btn_txt_3 {
  text-align: left;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->custom.css.liquid

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing
thomasmrgn99
Pathfinder
102 0 34

@oscprofessional Hi unfortunately this moved the whole thing 😞

 

Is it possible to move only the 'Small' word (size variant text inside box)

Thanks

 

Screenshot 2022-05-06 at 12.06.05.png

oscprofessional
Shopify Partner
15843 2371 3073

@thomasmrgn99 ,

.header_picker.nt_name_current.truncate {
    text-align: left;
}

please use this code

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing

M-Usman
Shopify Partner
9 3 6

This is an accepted solution.

Hi @thomasmrgn99,

.header_picker {
text-align: left;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->custom.css.liquid

If my reply helpful? Then please 

Like

 and 

Accept Solution

.
thomasmrgn99
Pathfinder
102 0 34

@M-Usman Thanks!

thomasmrgn99
Pathfinder
102 0 34

@M-Usman How can I lower the gap between add to cart button and variant selector?

 

Screenshot 2022-05-06 at 12.46.58.png

oscprofessional
Shopify Partner
15843 2371 3073

@thomasmrgn99 ,

 

 

.mb__40 {
    margin: 0;
}

 

 

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->custom.css.liquid

 
 
 
Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing
M-Usman
Shopify Partner
9 3 6

 

#callBackVariant_ppr #cart-form_ppr .mb__40 {
  margin-bottom: 20px;
}

try this code.

 

If my reply helpful? Then please 

Like

 and 

Accept Solution

.
thomasmrgn99
Pathfinder
102 0 34

@M-Usman Thanks so much

 

What about the spacing underneath the add to cart?

between the button and the line

M-Usman
Shopify Partner
9 3 6

MUsman_0-1651838492317.png

This one?

If my reply helpful? Then please 

Like

 and 

Accept Solution

.
thomasmrgn99
Pathfinder
102 0 34

@M-Usman No sorry the space here

If it is possible to increase

Thanks

 

Screenshot 2022-05-06 at 13.02.38.png

M-Usman
Shopify Partner
9 3 6
#callBackVariant_ppr {
  padding-bottom: 20px;
}
If my reply helpful? Then please 

Like

 and 

Accept Solution

.