Prestige theme help - How to have an image with multiple text blocks on it?

Hello,

I’m trying to create a section as in the image shared. I’m not sure if I’m missing something obvious. Thanks!

Hey @sb1984 ,

Could you please write your message in a more helpful way. Because I see there is no detail shared. Whether you want to create this section that shared in the image or somehow you facing issue there?

Waiting to hearing back.

Thanks

Hi @sb1984 ,

You can do this with the multicolumn section.

Add the section in the theme editor. find Custom CSS in that section,

.section-spacing {
    background-image: url('path/to/your/image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.multi-column__item {
background: white;
padding: 10px
}

This code will need slight modifications to get what you want. Here is a quick version I made within prestige.

If you’d like help with this customization or anything else, feel free to reach out! Just click the link below :down_arrow:

Hope that helps, Jake

this worked, thank you very much Jake!