Move Collection Description to Bottom of Page, But Keep Title On Top - Mobile

Solved

Move Collection Description to Bottom of Page, But Keep Title On Top - Mobile

jordanbford1
Explorer
85 0 19

How do I get the Collection Description to show under the Product grid but keep the Collection Title at the top of the page? I want this for Mobile only. I am using the Trade Theme. Here is my website

Screenshot 2025-04-18 at 22.35.28.png

 

😄

 

 

Accepted Solution (1)

tim
Shopify Partner
4450 529 1628

This is an accepted solution.

You need to do this:

1. Add a "Rich text" section below product grid. Remove all blocks other than "Text' and set Dynamic source to "Collection Description"

Screenshot 2025-04-19 at 2.27.42 PM.png

2. In the same section, edit "Custom CSS":

@media (min-width: 750px) {
  .rich-text, .rte {
    display: none;
  }
}

3. Go to "Collection Banner" section and edit "Custom CSS" there (first make sure "show description is checked")

@media (max-width: 750px) {
  .rich-text, .rte {
    display: none;
  }
}

4. Save and enjoy. No theme edit required -- makes theme updates easy.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

View solution in original post

Replies 4 (4)

Dan-From-Ryviu
Shopify Partner
11680 2289 2470

Hi @jordanbford1 

Please add this code to theme.liquid file and check if it works 

<script>
document.addEventListener('DOMContentLoaded', function () {
    // Select the elements
    var descriptionSection = document.querySelector('.collection-hero__description');
    var footerSection = document.querySelector('#shopify-section-sections--15411656359982__footer');

    // Check if both elements exist
    if (descriptionSection && footerSection) {
        // Move the description section before the footer section
        footerSection.parentNode.insertBefore(descriptionSection, footerSection);
    }
});
</script>

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

tim
Shopify Partner
4450 529 1628

This is an accepted solution.

You need to do this:

1. Add a "Rich text" section below product grid. Remove all blocks other than "Text' and set Dynamic source to "Collection Description"

Screenshot 2025-04-19 at 2.27.42 PM.png

2. In the same section, edit "Custom CSS":

@media (min-width: 750px) {
  .rich-text, .rte {
    display: none;
  }
}

3. Go to "Collection Banner" section and edit "Custom CSS" there (first make sure "show description is checked")

@media (max-width: 750px) {
  .rich-text, .rte {
    display: none;
  }
}

4. Save and enjoy. No theme edit required -- makes theme updates easy.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
jordanbford1
Explorer
85 0 19

@tim This work but changes it for desktop too and I am only want it to appear like this when viewing on mobile. Any way to can customize it to where on desktop it shows normally and on mobile it shows this was you put ^?

tim
Shopify Partner
4450 529 1628

I do not see it applied at your store. This is how it looks in my test store: https://bbkmarket.myshopify.com/collections/all 

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com