Adjust product Page dawn theme side margin

Solved

Adjust product Page dawn theme side margin

DasPod
Excursionist
17 0 6

Hi I am new to Shopify and a dummy to coding. Can anyone please help?

I am building this website softsavg.com

 

I want my entire website to be full width. Burt I have been able to make some sections full width. But the headers are still not aligned. Like this: I have marked the margin on the left of the header 'Latest Drop'

Screenshot 2025-02-05 at 14.48.57.png

There are more such headlines if you scroll below. I want all these headlines to align to the left with the rest of the sections.

 

Also on the product page the images are not aligned to the extreme left. I want them to be aligned to both on the left and right.

Screenshot 2025-02-05 at 14.53.08.png

 

 I want to remove the margin on the left and right. The image needs to be bigger to fit the viewport, without any padding. And the images below are appearing in 2 columns. Can they appear like the first image, one at a time?

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
10211 2427 3081

This is an accepted solution.

2. Stacked on top of each other one by one instead of in columns of 2 - for this one I would not suggest to make i 1 column it would not be usder friendly since the customer will be scroll a lot of pictures. 

Add this code for other req.

 

@media only screen and (min-width: 749px){
.product-media-container.constrain-height {
    width: 100% !important;
}

product-info .page-width {
    padding: 0 !important;
}

product-recommendations.related-products.page-width {
    max-width: 100%;
    padding: 0;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1738784851600.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 7 (7)

B2Bridge
Trailblazer
365 75 94

Hi @DasPod 
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

B2Bridge: All-in-one B2B wholesale solution, enabling merchants to set up a complete B2B store quickly and without coding.
With features like customizable registration forms, customer segmentation, and tailored price lists, it simplifies wholesale management.
B2Bridge also includes a dedicated Quick Order page and flexible Net Payment Terms, streamlining operations for wholesalers and enhancing the buying experience.

B2Bridge
Trailblazer
365 75 94

You want its look like this, right ?

B2Bridge_0-1738749736644.pngB2Bridge_1-1738749743486.png

 

B2Bridge: All-in-one B2B wholesale solution, enabling merchants to set up a complete B2B store quickly and without coding.
With features like customizable registration forms, customer segmentation, and tailored price lists, it simplifies wholesale management.
B2Bridge also includes a dedicated Quick Order page and flexible Net Payment Terms, streamlining operations for wholesalers and enhancing the buying experience.

DasPod
Excursionist
17 0 6

Yes, I want them to be aligned like this. Can you please guide me on how to do it?

Made4uo-Ribe
Shopify Partner
10211 2427 3081

Hi @DasPod 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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:

 

.collection__title.title-wrapper {
    max-width: 100% !important;
}

product-info .page-width {
    max-width: 100%;
}

.product__info-container {
        max-width: max-content !important;
    }

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1738756648738.png

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
DasPod
Excursionist
17 0 6

@Made4uo-Ribe thanks a lot. But in this the first image is still not left aligned with the logo and the other images still appear in 2 columns. Can the images be:

1. completely left aligned; without any top & bottom padding

2. Stacked on top of each other one by one instead of in columns of 2

 

Can the right side have 2 coloumns:

1. for the navigation, title, product price, descriptions, collapsible columns & icons with text

2. Another for the variants and the ATC & buy now buttons

Can the related products sections below be full width as well?

Screenshot 2025-02-05 at 19.09.05.png

Thanks in advance for the help!

Made4uo-Ribe
Shopify Partner
10211 2427 3081

This is an accepted solution.

2. Stacked on top of each other one by one instead of in columns of 2 - for this one I would not suggest to make i 1 column it would not be usder friendly since the customer will be scroll a lot of pictures. 

Add this code for other req.

 

@media only screen and (min-width: 749px){
.product-media-container.constrain-height {
    width: 100% !important;
}

product-info .page-width {
    padding: 0 !important;
}

product-recommendations.related-products.page-width {
    max-width: 100%;
    padding: 0;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1738784851600.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
DasPod
Excursionist
17 0 6

Hi @Made4uo-Ribe,

 

Thanks a ton! That partly solves my problems. And I understand your suggestion about stacking the images in 1 columns. So would avoid that.

 

I have marked the problems which are solved with a (Done) below.

Product page:

1. Can the images be completely left aligned; without any top & bottom padding - Done

2. Can the right side (The product details, variants, ATC & buy buttons) have 2 coloumns:

        a. 1 for the navigation, title, product price, descriptions, collapsible columns & icons with text

        b. another for the variants and the ATC & buy now buttons
3. Can the related products sections below be full width as well? - Done