HI!
I’m trying to make my collection banners in the Dawn theme full width. I know very little coding, and am clueless with this. Does anyone know what I can do to turn the banner in the below link into a full-width banner?
ZT Titanium – Kershaw Canada
Any help is much appreciated 
1 Like
Hi @KershawCan2017
Like this?
If it is, try the code.
- 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:
@media screen and (min-width: 750px){
.collection-hero__inner {
align-items: flex-start !important;
flex-direction: column !important;
}
.collection-hero__image-container.media.gradient {
margin: 0px;
}
.collection-hero__image-container.media.gradient img {
object-fit: fill;
}
}
Thanks so much, @Made4uo-Ribe ! That worked perfectly 
1 Like