How can I decrease text padding in the Image with Text box on Sense theme?

How do I reduce the padding in the Image with Text text box?

https://new-wave-ceramics1234.myshopify.com/

HI @newwaveceramics

This is Victor from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

#ImageWithText–template–18207134384405__db55c6da-262d-465b-8119-816a51b8cd4c {

padding: 10px 40px 10px !important;

}

Hope that my solution works for you.

Best regards,

Victor | PageFly

Hi Victor. Unfortunately that didn’t do anything

You can again try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: paste bellow code in tag → save.

div#ImageWithText--template--18207134384405__db55c6da-262d-465b-8119-816a51b8cd4c{ padding: 10px 40px 10px !important; }

Hope that my solution works for you.

Best regards,

Victor | PageFly

@newwaveceramics
add below css into theme.liquid before closing tag

@media screen and (min-width: 990px)
{
.image-with-text__content {
    padding: 0px 6px !important;
}
}

Worked thank you!

1 Like

You are welcome @newwaveceramics :blush: