Hey guys! I have this website mmosaga.com and in need of some help to fix my BG. Im trying to get my BG to rescale to various of monitor sizes. My monitor width is 1440 and my BG images are Width: 1566 Height:768.
I want that position to show up on all the other browsers including IE.
Here the code I use
I want that position to show up on all the other browsers including IE.
Here the code I use
PHP Code:
<html>
<head>
<script language="javascript">
function randomBackground()
{
var myImages = Array();
myImages[0] = 'Florenga.jpg';
myImages[1] = 'pangar.jpg';
myImages[2] = 'GrandChaseBG.png';
myImages[3] = 'ADBG.png';
myImages[4] = 'AionBG.png';
myImages[5] = 'FiestaBG.jpg';
myImages[6] = 'GalaxyOnlineBG.jpg';
myImages[7] = 'GunzBG.png';
myImages[8] = 'IrisOnlineBG.png';
myImages[9] = 'MabinogiBG.png';
myImages[10] = 'APB.jpg';
myImages[11] = 'S4LeagueBG.jpg';
myImages[12] = 'APB.jpg';
myImages[13] = 'WorldOfTanksBG.jpg';
myImages[14] = 'Elsword.jpg';
myRandomNumber = Math.floor(Math.random()*myImages.length);
document.body.style.backgroundImage = 'URL('+myImages[myRandomNumber]+')';
}
</script>
<style type="text/css">
body
{
background-attachment: fixed;
background-repeat: no-repeat;
}
</style>
</head>
<body onload="randomBackground();"></body>
Comment