Minion Theme: make a text box on a collection page

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: