How to minimize padding only for mobile version

Solved

How to minimize padding only for mobile version

NikosBat
Excursionist
257 0 38

Hello guys, how can I minimize the padding in this section only for mobile version?

 

Bildschirmfoto 2025-01-01 um 16.31.37.png

Accepted Solution (1)

DaisyVo
Shopify Partner
2771 332 383

This is an accepted solution.

HI @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

 

@media screen and (max-width: 768px){
.slideshow__text.banner__box.content-container {
    padding-bottom: 0 !important;
}
}

 

 

Here is the result: image_480.png

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

DaisyVo
Shopify Partner
2771 332 383

This is an accepted solution.

HI @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

 

@media screen and (max-width: 768px){
.slideshow__text.banner__box.content-container {
    padding-bottom: 0 !important;
}
}

 

 

Here is the result: image_480.png

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
NikosBat
Excursionist
257 0 38

Hello there, now the padding is 0, can I somehow adjust the padding? Im trying to change the 0 to 5 or 10 but its not working, I want to have a little more space between these 2, not the space is 0 and it dont look that good

DaisyVo
Shopify Partner
2771 332 383

HI @NikosBat 

 

Please add this code 

 

@media screen and (max-width: 768px){
h2.collection-list-title {
    font-size: 24px !important;
}
}

 

Result: 

image_720.png

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
NikosBat
Excursionist
257 0 38

Thanks DaisyVo that worked for me