Move description to bottom of collection page

Hi all,

I am using a custom theme for my website (https://overalzonnepanelen.nl/collections/kleine-zonnepanelen) and there is no way for me to move description section on my collection pages under the products.
I recently did some SEO optimization so there is quite some content in the description so it really needs to move to the bottom of the page.

The code that is related to this is (I think):

{% if collection.description.size > 0 and section.settings.show_description and section.settings.show_description_below == false %}
            
              {{ collection.description }}
            

          {% endif %}        
      

or it may also be this code:

{%- if collection.image == nil or section.settings.show_description_below or section.settings.show_image == false -%}
          {%- if section.settings.show_description and collection.description.size > 0 -%}
            
              {{ collection.description }}
            

I am not sure, but would be really grateful if someone could tell me how to move the description.

hii, @baki_c63
Can you mark which section you want to move into the bottom?
Thank You.

Hi Zworthkey, thanks for replying. Well it’s the description on the top part of my collection pages. For example, check this link: https://overalzonnepanelen.nl/collections/kleine-zonnepanelen

you need to scroll through quite some text content before you get to the products. That texts needs to move down.

hii, @baki_c63
paste this code on top of the pre_theme.min.css file.

@media only screen and (min-width: 992px) {
.cat_des_ntt4.container.container_cat.tc.mt__40 {
    position: relative !important;
    top: 3800px !important;
}
.col-lg-9.col-12 {
    position: relative !important;
    top: -1151px !important;
}
}

Thank You.

Hey Varun,

Amazing, it seems to be working. Only a small glitch, my sidebar filter menu didn’t move along and is now still in the middle of the page. And for some reason, it made the collection description of other collections disappear.

Do you know a fix for this too?