Debut Theme Problem with no text on the right hand side under product page header

(edited after reading first response - thanks for that)…Hello! Thanks in advance for the help. For some reason, there is no text right under my product header, where the product description is supposed to start. Instead, (and on other product pages) it starts down the page, as soon as there is space for full-width text. I believe there must have been an amendment to the code somewhere but I don’t know which file to check. The bottom line is that I want the product description to start under the product header and then proceed vertically along the right half the page - and then, go FULL width after the last image (highlighted area shows where I want text to be). Is there a way to do this? My url is www.gilliamtechnicalservices.com. Thank you.

1 Like

HI @GTS2 ,

The product description goes on that area. Please see this for more information

1 Like

Thank you - I have clarified with more information that I neglected to include the first time. I have edited the original post. Thank you for your answer.

1 Like

@GTS2 ,

You can divide the product description in half. First half on top, and the second half full width.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Section folder, open the product-template.liquid
  3. Find the {{ product.description }} (see image below for placement), then replace the code with the code below
{% assign product_description = product.description | split: "|" %}
          {{ product_description[0]  }}

  1. Next add the code below before the last

          {{ product_description[1]  }}
        

The code should look like this.

When you enter the product description, you have to make sure that you do not have “|” in any of the description since we use the symbol to separate the description.

This is what my product description looks like

And this is what it looks like in the front end

1 Like

Ok, I was able to revert back to the original and the description showed up where it was supposed to (see image). I’ve added your code… and now the text seems justified right. Trying to split where the highlighted arrow is. Any further thoughts? Thank you.

Good Morning -

I’ve added the code and placed a “|” in the product description where I want the break. This is the result. I get the social buttons… with some bold periods throughout and no full width copy. Do you have further advice? Thanks!