Hi There,
Current background image is horizontal, it will work on desktop by default, on mobile/smaller screen size, when screen width is smaller that it’s height, this image width of course will not work. There are few options to solve this issue.
Option 1. Use a different image. On your section, add an ID on the field, for example - my-custom-section
. Then add the following CSS:
@media (max-width:480px){
#my-custom-section{
background-image: url(https://idophotographydungarvan.ie/wp-content/uploads/2017/06/Wedding-photography-Waterford-Dungarvan-Ireland_01.jpg);
}
}
Replace the image URL with another image where it will fit for mobile. A vertical version of that image where in the the two people is on the middle.
Option 2. Use the same image and just adjust current background position for smaller screen. See this: https://screencast-o-matic.com/watch/cbQF1sIqzB
@media (max-width:480px){
.home div#x-section-1 {
background-position: 81% 50%;
}
}
Hope this helps.