Background Image in a Row

I don’t see an option to add a background image to a row. I only see the option to change background color. How would I go about adding a background image to a row? Thanks in advance. I’m using cornerstone builder with integrity-1 theme.

Hi @djgalindo,

Thanks for writing in.

Check the advance box of your background options so that the options for more row background will show.

Hope it helps.

Let us know how it goes.

Thanks.

Hi Nico. I do not have that option on my end. Can you let me know what’s going on? Thanks

Hi David,

Sorry for the confusion, what Nico shows you is the settings/options for V2 Section. Integrity 1 Demo is built using the classic Sections and classic elements that is why you’re seeing a different settings on your end.

To apply a background-image on a classic ROW, we need a custom CSS. Please add this to Theme Options > CSS

.row1-bg {
	background-image: url(BACKGROUND IMAGE URL HERE);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

Replace the BACKGROUND IMAGE URL HERE with the actual image URL.

Then add the CLASS row1-bg to your ROW.


More information about writing custom CSS here.

Hope it helps,
Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.