Top padding above slideshow?

Solved

Top padding above slideshow?

Ryan1998
Pathfinder
101 2 32

How do I add top padding above my slideshow on product page please?

url: https://errival.com/products/errival%E2%84%A2-mini-rubber-band-shotgun 

PHOTO-2024-08-05-12-16-59.jpg

Accepted Solutions (4)

Huptech-Web
Shopify Partner
908 186 189

This is an accepted solution.

Hello! @Ryan1998 Please follow these steps to add this CSS code:

1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. If you have a custom CSS file, open that instead.
5. If you can't find your custom CSS file, open "base.css"
6. Add the following code at the end of the file.

@media only screen and (min-width: 750px){
 .product.grid {
    margin-bottom: 30px;
 }
}

 

If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.

Thank You
K.K

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required

View solution in original post

Moeed
Shopify Partner
4932 1302 1577

This is an accepted solution.

Hey @Ryan1998 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
section#shopify-section-template--21900340199753__slideshow_LQNa86 {
    padding-top: 60px !important;
    background: white !important;
}
}
</style>

RESULT:

Moeed_0-1722857182766.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

Hello @Ryan1998 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 750px) {
product-info#MainProduct-template--21900340199753__main{
padding-bottom: 28px !important;
}
}
</style>

niraj_patel_0-1722857196982.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Rahul_dhiman
Shopify Partner
435 86 87

This is an accepted solution.

Hello @Ryan1998 

Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-main-product.css ----> line number 24
search this code

@media screen and (min-width: 750px) {
.product__column-sticky {
display: block;
position: sticky;
top: 3rem;
z-index: 2;
}
}


replace with this code

@media screen and (min-width: 750px) {
.product__column-sticky {
display: block;
position: sticky;
z-index: 2;
}
}

 result
6.png

If this was helpful, hit the like button and accept the solution.
Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639
Checkout Some Free Sections Here
Mobile:- +91 62390-46167

View solution in original post

Replies 5 (5)

Ryan1998
Pathfinder
101 2 32

Desktop version only please.

Huptech-Web
Shopify Partner
908 186 189

This is an accepted solution.

Hello! @Ryan1998 Please follow these steps to add this CSS code:

1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. If you have a custom CSS file, open that instead.
5. If you can't find your custom CSS file, open "base.css"
6. Add the following code at the end of the file.

@media only screen and (min-width: 750px){
 .product.grid {
    margin-bottom: 30px;
 }
}

 

If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.

Thank You
K.K

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required

Moeed
Shopify Partner
4932 1302 1577

This is an accepted solution.

Hey @Ryan1998 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
section#shopify-section-template--21900340199753__slideshow_LQNa86 {
    padding-top: 60px !important;
    background: white !important;
}
}
</style>

RESULT:

Moeed_0-1722857182766.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

Hello @Ryan1998 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 750px) {
product-info#MainProduct-template--21900340199753__main{
padding-bottom: 28px !important;
}
}
</style>

niraj_patel_0-1722857196982.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

Rahul_dhiman
Shopify Partner
435 86 87

This is an accepted solution.

Hello @Ryan1998 

Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-main-product.css ----> line number 24
search this code

@media screen and (min-width: 750px) {
.product__column-sticky {
display: block;
position: sticky;
top: 3rem;
z-index: 2;
}
}


replace with this code

@media screen and (min-width: 750px) {
.product__column-sticky {
display: block;
position: sticky;
z-index: 2;
}
}

 result
6.png

If this was helpful, hit the like button and accept the solution.
Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639
Checkout Some Free Sections Here
Mobile:- +91 62390-46167