Spacing in Multirow - Mobile View Sense Theme

Hello Support Community,

The images’ bottom side in the multirow section is hidden by the text. How to add some space above the text area so the full image appears ?

This is how the image looks on desktop:

https://nefertari-eg.myshopify.com/

Password:
ohldah

Thank you.

Hi @Gaiar ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Assets/base.css
  2. Add code below to end of file
@media(max-width: 749px){
  .multirow  .image-with-text__media {
    height: auto!important;
  }
  .multirow  .image-with-text__media img {
    position: static!important;
  }
}
1 Like

Thank you so much @EBOOST . Worked perfectly.