How can I move the 'in stock' label next to the price on my Warehouse theme?

Hi

Pls could u provide the solution to moving “in stock” next to/in level with the price, attached examples below

Theme: warehouse

URL: tennisgiant.com

Wanted result:

current:

Cheers

@chrisjames11
Hello,

.product-form__info-item.product-form__info-item--quantity {
	clear: both;
}
.product-form__info-item {
  float: left;
  width: 50%;
}

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

This Solution Its Useful Please Like and Accept Solution

Like This

how cs=an i add more space between the price and stock status? @oscprofessional

how can i add more space between the price and stock status? @oscprofessional ???

how can i add more space between the price and stock status? @oscprofessional ???

@chrisjames11
Hello,
first add different class in-stock section
go to your online store > edit code > product.liquid
Search “.product-form__info-item” this class and add different class
then after apply css
Example

.product-form__info-item {
  float: left;
  width: 70%;
}
.instock {
width:30% !important
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
if not resolve your issue please share your store Details I wiil provide proper solution
Thanks
Please Like and Accept Solution