Still having problems. I was noted for not being specific enough in my last post, so let me try to be more specific. I can’t find a way to get my project to transfer to my iPhone 6. I used various media queries, and the responsive design works in Firefox and Chrome “checks the item”. When I open it on my iPhone 6, it looks like this.

My goal is to get closer to this: 
Here is the website: http://mattvwhittle.com/WeddingWebsite/index.html
Here is what I wrote in the HTML meta tags:
meta charset = "utf-8"
meta name = 'viewport' content = "width = device-width,
initial scale = 1, maximum scale = 1, minimum scale = 1, user scalable = no "
meta http-equiv = "X-UA-Compatible" content = "IE = edge, chrome = 1" meta name = "HandheldFriendly" content = "true"
Here is the media query I wrote about this issue:
@media only screen and (max-width: 480px) { .fixed-bg { position: relative; background-size: auto contain; background-attachment: fixed; background-repeat: no-repeat; } }
I am new to media queries, but I tried:
background-size: auto 100%; background-size: 100% auto; background-size: 100%; background-size: conain;
None of them achieve the desired effect. Any help would be greatly appreciated. Thank you.
source share