remove collection title and description V1 SPLIT

On the Split V1, How do I get rid of the collection description on the right hand side. I am only wanting the products visible. I have managed to get rid of the title, however, I can not figure out how to get rid of the description.

Thanks

@nicoleknightt Hey, thanks for posting here.
can you please share the link to inspect it, thanks.

deleted

@nicoleknightt Could you please share the store URL? This will allow me to inspect it and provide you with a more tailored solution.

@nicoleknightt Please follow below steps to remove the collection description on the right hand side. Let me know whether it is helpful for you.

  1. From admin go to “Online Store” → “Themes”.
  2. Click “Edit code” button from the current theme.
  3. Go to “css_main.scss.css” file.
  4. Then paste the below code at the bottom of the file and then save changes.
#section-collection .site-box.box__heading {
    display: none;
}
.collection__holder:not(.odd) .site-box:nth-child(2) {
    border-right: 1px solid #ededed !important;
    border-bottom: 1px solid #ededed !important;
}

Result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

https://sueno.club/collections/pre-order

thank you