0
How can I add a background picture that does not change if the page is zoomed?
2 Answers
+ 1
You can't :(
But you can avoid zoom ( in mobile devices at least ) by placing this line in your <head> section:
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
In theory, you need only some of these options, but with the complete set, you might be preserved for all mobile device users zoom :P
0
Tnx