How can I move product description to the right above price in Simple theme

I am hoping to move the description box from under the photos to next to the photos. I am so confused on how to do it. I’m assuming it’s the product-template.liquid. I am just not sure exactly where everything should be. Any help is appreciated. This is how it is setup now. Thanks!

Hello @arielsthings ,

  1. Edit product-template.liquid under ‘Sections’

Here find this code

{% if section.settings.product_description_position == 'right' %}
          {%- assign position = 'right' -%}
          {% include 'product-description' %}
        {% endif %}

Once you find it cut it and now again search for this code

# {{ product.title }}

Now just after this paste the previous code you cut
Now it will look like this

# {{ product.title }}
        {% if section.settings.product_description_position == 'right' %}
          {%- assign position = 'right' -%}
          {% include 'product-description' %}
        {% endif %}
  1. Next go to product default page settings through ‘Customize theme’ option
    Here click Product pages → Position → select ‘Right of images’
    last save it and check the changes.

Thanks