Minion Theme: make a text box on a collection page

Topic summary

A user working with the Minion theme needed to make a text box wider on their collection pages. Despite selecting ‘wide’ and ‘fullwidth’ layout options in the theme settings, the text box remained too narrow.

Solution provided:

  • Add custom CSS to the end of the base.css file
  • Target the specific section ID with a max-width: 100% property within a media query for screens wider than 750px
  • The CSS successfully expanded the text box to the desired width

Follow-up request:
The user also wanted to widen their blog post layout. A similar CSS solution was provided, targeting the blog article grid with the same max-width: 100% approach.

Both CSS modifications resolved the width issues. The discussion demonstrates a common Shopify theme customization where default theme settings have limitations that require custom CSS overrides.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

I’ve added a tex box under the product grid on my collection pages and I want it to be wider. Where do I edit the code for this?

@Slice_agency - this needs css, can you please share this page link?

Here you go https://petbayaus.myshopify.com/collections/all

Password is otseaz

@Slice_agency - please check if you have an option to make this text wide from settings for the section, it does not have unique class, so better if have default section

Thanks for looking :slightly_smiling_face: It gives me the option to select the width for the layout and the background. I have selected ‘wide’ and ‘fullwidth’ but it doesn’t make it wide enough.

@Slice_agency - try this css, please add this css to the very end of base.css file

I think this section has same id on all the pages

@media screen and (min-width:750px){
#shopify-section-template--14378302898481__394b4fc9-ad0f-461b-82e9-c4da5af68107 .grid .col-6{max-width:100%;}
}

Beautiful!! That worked, thank you so much :slightly_smiling_face:

1 Like

Hi @Slice_agency

I’m Richard Nguyen - CRO Expert at PageFly, I’d like to suggest this idea:

Add this css at the bottom

Online Store ->Theme ->Edit code

Assets → base.css

.col-6 {

max-width: 100% !important;

}

Hope you find my answer helpful!

Regards,

Richard-pagefly

Hi again, I also want my blogs to be wider. Is that a simple solution? Here is a blog: https://petbayaus.myshopify.com/blogs/news/why-do-dogs-like-squeaky-toys

@Slice_agency - try this

@media screen and (min-width:750px){
article .grid .col-6{max-width: 100%;}
}

Perfect! Thank you again :slightly_smiling_face: