Full screen centered background image with CSS and jQuery # 2
There are a couple of improvements to do to Full screen centered background image with CSS and jQuery to add some functionality such as window resizing management and make it compatible with Opera. First, you should change the CSS to
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<style type="text/css"> #triquiback{ left: 0; top: 0; position:fixed; overflow:hidden; zIndex: -9999 } #triquibackimg{ position:relative } </style> |
Setting triquibackimg‘s position to relative rather than fixed will make it work in Opera [...]









