How to add a background image to the text side of a multirow

I would like to have a background image instead of a solid color on the text side of the multirow (the area that is currently purple in my attachment)

Hi @theglowroomva ,

Would you mind to share your URL website? with password if its protected. Thanks!

@theglowroomva

Please share your store URL!

Thanks!

Is this the URL you need?

https://admin.shopify.com/store/a2c225-4/themes/162123546926/editor?section=template–21402359267630__9b664499-8481-42c7-a1fb-f0129b5e8e96

https://admin.shopify.com/store/a2c225-4/themes/162123546926/editor?section=template–21402359267630…

Here you go, let me know if this works..https://admin.shopify.com/store/a2c225-4/themes/162123546926/editor?section=template–21402359267630…

Hi, This is the admin URL. I only need the URL store where costumers can see it. Thanks!

Do you mean this one?

https://a2c225-4.myshopify.com/

Yes, thats it. Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.image-with-text__content.image-with-text__content--middle.image-with-text__content--desktop-left.image-with-text__content--mobile-center.image-with-text__content--small.content-container.gradient.color-scheme-e79cb987-9e32-4ea3-9fca-7c3274a26c8d {
    background: url('path/to/your/image.jpg') center/cover no-repeat; 
}
  • And Save.
  • Place your Image inside the string and with open and close parenthesis.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Nice that worked perfectly. How would I go about using different images for different multirows?

Oh, We need to call the different selector. Check this one.

Same Instruction.

#shopify-section-template--21402359267630__b4e9cb5a-8fd5-4fe4-bb2f-b6532f6cfe24 > div > div > div > div > div.image-with-text__text-item.grid__item > div {
    background: url(/cdn/shop/files/2_023453e3-95c0-4ffd-aef9-17acf5b1cd4a.png?v=1701896342) center/cover no-repeat;
}
#shopify-section-template--21402359267630__c0673ad0-6ecd-4838-8f33-0c9e63c9c91c > div > div > div > div > div.image-with-text__text-item.grid__item > div {
     background: url(Change.other.img.) center/cover no-repeat;
}

And Save.

Change the img that you like to use.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

I’m confused. I don’t see anything new that allows me to select an image for the text side background. Screenshot for reference.

Now I get it, thanks again!