Hi again ?? Since @tech55541 jumped, let me try assist.
Your theme is already using background-size: cover
for this image so it’s not entirely unresponsive. We can change that to background-size: 100%. The problem with that is that we’d need to massive adjust the text size too because once we make the background image full responsive, it becomes really small on mobile so the text needs to follow. If this is the effect you want then you might try using a plugin like Meta Slider for this row. You could create a single slide slider. It handles this level of responsive behaviour really well. Unfortunately, layering is only in the premium version. Master Slider however has layering in the free version.
To see what I’m on about, add the following to your Custom CSS:
1.
.themify_builder_6_row.module_row_0.module_row {
background-size: 100% !important;
}
But now the background image is repeating so what we really need is:
2.
.themify_builder_6_row.module_row_0.module_row {
background-size: 100% !important;
background-repeat: no-repeat;
}
But now the background image doesn’t cover the entire container anymore. If we want to go back to background-size: cover
we’d just remove the Custom CSS becuase the theme is already using cover
.
You could resize everything as the resolution changes, text, container height, background image, but, unfortunately, that’s a lot more than we’re able to cover here.
Hopefully this helps your understanding of what’s happening here.