New Shopify Certification now available: Liquid Storefronts for Theme Developers

Dawn - padding lost at some point

Solved
Alex087
Trailblazer
219 3 37

Hi,

 

On my product page, I have a section (see image bellow) in which the text loses the left padding between 750px & 990px.

 

Thank you in advance for your help

Alex

Screenshot 2023-09-26 at 07.56.04.png

Accepted Solution (1)
oscprofessional
Shopify Partner
15736 2353 3051

This is an accepted solution.

Hello @Alex087 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.product_slider_md_box_right_new {
    padding: 0px 20px !important;
}
Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing

View solution in original post

Replies 6 (6)
JosephK
Shopify Partner
605 74 86

Hi,

You can add this code to bottom of base.css file:
Admin -> Customize theme -> Edit code -> assets -> base.css

.product_slider_md_box_right_new{
  padding: 0px 20px;
}

 

You can please Like and Accepted Solution if my suggestion helpful. And if you want to customize or develop new feature on Theme or App => Contact to us via Email or Skype.
- Contact Support : Gmail | Skype: live:.cid.309f2fbaceec513
Alex087
Trailblazer
219 3 37

hi @JosephK I tried but was still broken,

thank you

ZenoPageBuilder
Shopify Partner
844 150 168

Hello @Alex087 👋

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

@media (max-width: 990px) {
    .product_slider_md_box_right_new {
        padding: 0 20px !important;
    }
}

The result

Screenshot 2023-09-26 at 14.06.32.png

Hope that helps! 

Zeno Page Builder - Build responsive & SEO-optimized Landing pages, Blog posts, Product pages and more...
Learn more at zenobuilder.com
Alex087
Trailblazer
219 3 37

thanks @ZenoPageBuilder that's strange because it didn't work when I added...

thanks for your help in advance

oscprofessional
Shopify Partner
15736 2353 3051

This is an accepted solution.

Hello @Alex087 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.product_slider_md_box_right_new {
    padding: 0px 20px !important;
}
Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing
Alex087
Trailblazer
219 3 37

hi @oscprofessional it worked thanx!