Hi Aaron,
Thank you for writing in, yes you can achieve that with a CSS @media query. To do this, add a unique CLASS to your custom Section, and then add this to Theme Options > CSS
/*768px and above*/
@media (min-width: 768px) {
.unique-section-class {
background-image: url(BACKGROUND IMAGE URL HERE);
background-size: cover;
background-repeat: no-repeat;
}
}
/*767px and below*/
@media (max-width: 767px) {
.unique-section-class {
background-image: url(BACKGROUND IMAGE URL HERE);
background-size: cover;
background-repeat: no-repeat;
}
}
Where unique-section-class is the CLASS that you assigned to your custom Section. This will make that section have 2 background-image switching between desktop and mobile (767px).
You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial
Hope it helps,
Cheers!