How can I align add-to-cart and quantity buttons to the left?

Hi their,

I am having issues with my add-to-cart button aligning to the left with the quantity button. Ive attached my website link for you to look over. https://rdyup.co/products/enlightenment-led-note-board

Hello @rdyup

Hope you are doing well,

You can change the price of my products to be under the variant by following steps:

  1. On admin panel, go to “online store” and select themes.

  2. In the “current theme” section click on “action buttons” and choose “edit code” from drop down menu.

3.In sections search for file named ‘product- template.liquid’ click on it and open it in the code editor.

  1. Search for code responsible for displaying the “add to cart” button .Look for

  2. Add the follwing code:

Add to Cart.

  1. Now save the changes.

  2. After this in theme code editor, find “theme.css.liquid” file.

  3. Add the following code:

.align-left {
float: left;
margin-right: 10px;
}

.product-form__input–quantity {
float: left;
}

  1. Save the changes to CSS file.

Hope this resolves your query.

I don’t have product- template.liquid in my sections under edit code.