How can I extend text width in my product grid layout?

Hi, I am re designing my product collections and navigation and would love to know how I can extend the text the width of the page

URL www.orangegrove.co.nz
Theme: Dawn

Thanks

Wendy

@wendycain
Add this code in the bottom of the component-collection-hero.css.

@media screen and (min-width: 750px){
.collection-hero__description {
    max-width: 100% !important;
    width: 100% !important;
}
}

Hi @wendycain ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-collection-hero.css->paste below code at the bottom of the file:
.collection-hero__description {
    max-width: 100% !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

Many many thanks, really appreciate your help

Many thanks, I really appreciate your help, it worked perfectly