Make product description box full-width [REFRESH THEME]

I’m having some trouble making my product descriptions full width across the page. The way shopify has it set-up makes the whole thing look tacky and disorganised.

If there a way to add code to mitigate this? I would greatly appreciate it.
For reference I’ve tried many methods and forums online. Thanks!

WEBSITE LINK - https://rmtperformance.com/products/bmw-g80-m3-g82-m4-valvetronic-catted-exhaust

Hi @Reinhart

Do you want this like result?

Let’s discuss more.

1 Like

That is actually perfect. How did you do this?

@Reinhart

Here is what you can try:

  • remove “page-width” class.

  • And add the style “padding: 0 15px;” to this element.

  • And comment this code in assets/section-main-product.css.

@media screen and (min-width: 750px) {
    .product__info-container {
        /* max-width: 60rem; */
    }
}

Hi @Reinhart

Please go to your store admin > Sale channels > Online Store > Themes > Customize > Products > Default product, hide Description block after Product information.

Click + Add section > Custom liquid, add this code to Liquid


    

        {{ product.description }}
    

1 Like

Genius, many thanks.
Quick, simple and easy to do!

1 Like