Solved

Reduce spacing b/w Image and Text

ShellyB
Excursionist
23 0 6

Help! My page looks good on desktop, but when viewed on mobile there is too much space between the bottom of my image and the text. I am using debut theme and the section Im trying to edit is an Image With Text section. 

Accepted Solution (1)

Kinjaldavra
Shopify Partner
2302 570 1422

This is an accepted solution.

hello @ShellyB 


please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

 @media only screen and  (max-width: 739px) {
#shopify-section-1623355764e520e098 .page-width.feature-row .feature-row__text.feature-row__text--left{
        padding-top: 0 !important;

}
}

 

View solution in original post

Replies 2 (2)

Kinjaldavra
Shopify Partner
2302 570 1422

This is an accepted solution.

hello @ShellyB 


please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

 @media only screen and  (max-width: 739px) {
#shopify-section-1623355764e520e098 .page-width.feature-row .feature-row__text.feature-row__text--left{
        padding-top: 0 !important;

}
}

 

ShellyB
Excursionist
23 0 6

Thank you! Worked perfect 🙂