Why is the mobile background of my store zoomed in?

Why does shopify show the mobile background of my store like this:

But when in reality it is zoomed in like this:

Would be awesome if someone could help me

my store url: https://gadget-daddy.com/

Do you want it to display zoomed in to the level shown in the second image? If so you can copy and paste this code into the Custom CSS section of your Theme Settings found in the Customize editor:

@media screen and (max-width: 749px) {
	main#MainContent {
	  background-size: 840% !important;
	}
}

Hey,

no I actually want the oposite. Right now it shows like in the second image but I want to zoom it out so it looks like on the first image. However I dont want to change anything on the browser version. I only want to zoom out the mobile version. Does that work seperately?

Ah ok I see. I was confused because it displays properly when viewing on desktop using mobile screen sizes. It’s only on actual mobile devices that it displays differently. I’m looking into it further.

Thank you my man. Would be awesome if you could solve this for me. Been trying to get this done the whole day

Try adding this to the Custom CSS section of your Theme Settings instead:

@media screen and (max-width: 767px) {
  main#MainContent {
    background-attachment: scroll !important;
  }
}

It worked! Thank you so much!