How to remove the white area from a Collection Description?

Solved

How to remove the white area from a Collection Description?

HANiC
Tourist
3 0 3

Hi,

 

I would like to remove the white area / empty space at the bottom of the Collection Description (see the attached image of the collection page). As there is now a huge gap between the Collection Description (which is a part of a Product Grid) and the three Columns below the Product Grid. The gap seems to be the same regardless of the amount of text in the Collection Description. Cannot seem to figure out how to fir this so, any help is highly appreciated! The theme is Impulse. Thanks!

 

CollectionDescriptionGAP.JPG

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
10036 2385 3012

This is an accepted solution.

Thanks for the info, seems like you have 2 another description on that area that you remove. But not properly remove. Check this one.

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

#CollectionAjaxContent > div > div > div.grid__item.medium-up--four-fifths.grid__item--content > div:nth-child(2) > div > h3:nth-child(12), 
#CollectionAjaxContent > div > div > div.grid__item.medium-up--four-fifths.grid__item--content > div:nth-child(2) > div > h3:nth-child(11), .rte.collection__description h3 a {
    display: none;
}
.rte.collection__description {
    margin-bottom: 0px;
}

 

And Save. 

Result:

Made4uoRibe_0-1707681430886.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
10036 2385 3012

Hi @HANiC 

Would you mind to share your store URL? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
HANiC
Tourist
3 0 3
Made4uo-Ribe
Shopify Partner
10036 2385 3012

This is an accepted solution.

Thanks for the info, seems like you have 2 another description on that area that you remove. But not properly remove. Check this one.

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

#CollectionAjaxContent > div > div > div.grid__item.medium-up--four-fifths.grid__item--content > div:nth-child(2) > div > h3:nth-child(12), 
#CollectionAjaxContent > div > div > div.grid__item.medium-up--four-fifths.grid__item--content > div:nth-child(2) > div > h3:nth-child(11), .rte.collection__description h3 a {
    display: none;
}
.rte.collection__description {
    margin-bottom: 0px;
}

 

And Save. 

Result:

Made4uoRibe_0-1707681430886.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
HANiC
Tourist
3 0 3

Thank you @Made4uo-Ribe - this seems to work!