How do I remove space to the left of the product description on Impulse theme?

On this page, I want to reduce the white space to the left of the product description (in between the photo and the text). thanks

Dan

Hey @Dtrachtman ,
Welcome to the Shopify community!
You can follow the instruction below:
please add this to your theme.css file.

.product-single__meta {
  padding-left: 0px !important;
}

If you feel like my answer is helpful, please Like and mark it as a solution. Let me know if you have any further questions.
Thank you!
Raman

1 Like

you nailed it! thanks so much.

1 Like

Add the following code at the end of the theme.css file

.product-single__meta{

padding-left:0px;

}