Minimal theme full width description page

Hello,

I’d like to create a full-width description page for Minimal theme. I did find the tutorial with the right code on how to do it, but I want more functionality. I like current description the way it is, but I’d like to add extra information below it full-width: testimonials, brand information and etc.

URL:https://lalberobrand.com/

Theme: Minimal (regular as far as I remember)

What do I need to change in this code for the functionality described above?

{% if section.settings.social_sharing %}
            <hr class="hr--clear hr--small">
            <h2 class="h4">{{ 'products.general.share_title' | t }}</h2>
            {% include 'social-sharing' %}
          {% endif %}
        </div>

      </div>
      <div class="grid__item post-large--one-whole">
      	{% unless section.settings.show_extra_tab == false or pages[section.settings.extra_tab_content] == empty %}
          <div class="tabs">
            <ul class="tab-switch__nav">
              <li>
                <a href="#description" data-link="description" class="tab-switch__trigger h3">{{ 'products.product.description' | t }}</a>
              </li>
              <li>
                <a href="#extra" data-link="extra" class="tab-switch__trigger h3">{{ pages[section.settings.extra_tab_content].title }}</a>
              </li>
            </ul>
            <div id="description" class="tab-switch__content" data-content="description">
              <div class="product-description rte" itemprop="description">
                {{ product.description }}
              </div>
            </div>
            <div id="extra" class="tab-switch__content" data-content="extra">
              <div class="rte">
                {{ pages[section.settings.extra_tab_content].content }}
              </div>
            </div>
          </div>
        {% else %}
          <div class="product-description rte" itemprop="description">
            {{ product.description }}
          </div>
        {% endunless %}
      </div>
    </div>
  </div>

Hello @Linas10 ,

  1. Go to Online Store->Theme->Edit code
  2. Sections->product-template.liquid

Description still appears below product images and full width.

can you find any solution for the problem ?