Solved

Featured collection page width (Dawn Theme)

swishlatvija
Explorer
62 0 8

Hello,

 

Could someone please show us how to change the width of Featured Collections? We want to set it to 1400px so it aligns with the red lines as in the picture below.

Link: https://eu-swish.myshopify.com/collections/xpt

 

Screenshot (15).png

 

Thank you so much!

Accepted Solutions (2)

WebDeskSolution
Shopify Partner
165 42 47

This is an accepted solution.

Hello @swishlatvija 

Once you Log in to the Admin, then process the following steps:

Step 1: Go to Dashboard ->Online Store ->Theme-> Action->Edit code->
Step 2: Search the file base.css
Step 3: Paste the below CSS at bottom of the file -> Save

@media screen and (min-width: 750px)
{	#shopify-section-template--17173822931208__832a529b-6225-411a-84cb-1bfdedbb2fd9 .page-width
	{
		    max-width: 1220px;
		    padding: 0;
	}
}

 

Output:

WebDeskSolution_0-1673883625764.png

 

If you find our reply helpful, please hit Like and Mark it as a Solution.

An award-winning North American Shopify Development Agency That Delivers Powerful Results, Innovation, and Secure Digital Transformation.

Thank You,


WebDesk Solution Support Team
Get a Free Quote | Email | Shopify Partner | Hire Us | Call Us 877.536.3789


Location: 150 King St. W. Toronto, ON M5H 1J9

View solution in original post

PageFly-Victor
Shopify Partner
7865 1785 3055

This is an accepted solution.

Hi @swishlatvija 

 

You can try this code by following these steps:

Go to Online store => themes => actions => edit code  and add this code on file theme.liquid before tag </body>

 

PageFlyVictor_0-1673884540746.png

 

<style>
@media screen and (min-width: 750px)
{
.collection__title.title-wrapper.title-wrapper--no-top-margin.page-width {
    max-width: 1220px;
    padding: 0;
}
}
</style>

 

Hope this answer helps.

Best regards,

Victor | PageFly

View solution in original post

Replies 5 (5)

DavidEKim
Shopify Partner
392 131 187

@swishlatvija 

Hi,

Please add the code below to the bottom of Assets > component-slider.css file.

@media screen and (min-width: 990px) {
  slider-component.slider-mobile-gutter.page-width.page-width-desktop, 
  .page-width-desktop {
    max-width: 1300px !important;
    padding: 0 40px !important;
  }
}

 

Hope it helps.

If helpful, please Like and Accept Solution.
Want to customize your store, please feel free to contact me.
PeopleVillage - Shopify Partner
swishlatvija
Explorer
62 0 8

Hey @DavidEKim ,

 

Thanks a lot! It worked for the product cards, but the collection title is still in a different layout setting. Could you please also assist so the text is aligned with the rest of the layout? Pic below.

 

Screenshot (17).png

WebDeskSolution
Shopify Partner
165 42 47

This is an accepted solution.

Hello @swishlatvija 

Once you Log in to the Admin, then process the following steps:

Step 1: Go to Dashboard ->Online Store ->Theme-> Action->Edit code->
Step 2: Search the file base.css
Step 3: Paste the below CSS at bottom of the file -> Save

@media screen and (min-width: 750px)
{	#shopify-section-template--17173822931208__832a529b-6225-411a-84cb-1bfdedbb2fd9 .page-width
	{
		    max-width: 1220px;
		    padding: 0;
	}
}

 

Output:

WebDeskSolution_0-1673883625764.png

 

If you find our reply helpful, please hit Like and Mark it as a Solution.

An award-winning North American Shopify Development Agency That Delivers Powerful Results, Innovation, and Secure Digital Transformation.

Thank You,


WebDesk Solution Support Team
Get a Free Quote | Email | Shopify Partner | Hire Us | Call Us 877.536.3789


Location: 150 King St. W. Toronto, ON M5H 1J9

PageFly-Victor
Shopify Partner
7865 1785 3055

This is an accepted solution.

Hi @swishlatvija 

 

You can try this code by following these steps:

Go to Online store => themes => actions => edit code  and add this code on file theme.liquid before tag </body>

 

PageFlyVictor_0-1673884540746.png

 

<style>
@media screen and (min-width: 750px)
{
.collection__title.title-wrapper.title-wrapper--no-top-margin.page-width {
    max-width: 1220px;
    padding: 0;
}
}
</style>

 

Hope this answer helps.

Best regards,

Victor | PageFly

swishlatvija
Explorer
62 0 8

Super grateful, thanks @PageFly-Victor @DavidEKim !