yes!
right click the row in the gridder.
click "set row html class and id"
and as class enter:
bgbottom
then use this css:
@media (orientation: landscape) {
.bgbottom .background-image.background-image-count-1 img{
object-fit: fill!important;
width: 100%!important;
height: auto!important;
left: 0!important;
top: auto !important;
bottom: 0!important;
}
}
Enter this css in "lay options" -> "custom css & html" -> "custom css"
not in "custom css for desktop"
(needs to be in custom css, because we use a media query here, and for desktop already has a media query applied to it)
we're using a media query for landscape browser, because if were on a portrait sized browser we dont want to use this css
because then a white gap could appear