mistertylersmith Posted April 10, 2008 Share Posted April 10, 2008 PHP 5 MYSQL 5 Firefox the problem is that I'm trying to get one of three random images to be the background image for index.php. I can get the images to display correctly, but they scroll with the page even though i specifically have it set not to do that. Here is the code I'm using: <?php $file = array('pictures/misc/purplecrest_big2.png', 'pictures/misc/lion_clear3.png', 'pictures/misc/moto1.png'); $a = rand(0,2); ?> <body style="background-image: url(<?php echo $file[$a]; ?>); background-repeat: no-repeat; background-attachment:fixed; background-position: 90% 250px; "> Link to comment https://forums.phpfreaks.com/topic/100410-random-background-image/ Share on other sites More sharing options...
awpti Posted April 10, 2008 Share Posted April 10, 2008 That wouldn't be a PHP question. Check the HTML forums and post a link to the page so people can check out the HTML. Link to comment https://forums.phpfreaks.com/topic/100410-random-background-image/#findComment-513642 Share on other sites More sharing options...
poleposters Posted April 10, 2008 Share Posted April 10, 2008 I'm pretty sure that 'fixed' refers to the image being fixed in relation to the viewer , which means that it will scroll down as you scroll the page. try removing it all together. Link to comment https://forums.phpfreaks.com/topic/100410-random-background-image/#findComment-513665 Share on other sites More sharing options...
Crew-Portal Posted April 10, 2008 Share Posted April 10, 2008 <?php //Name your files pictures/misc/background1.png, pictures/misc/background2.png, and pictures/misc/background3.png $file = "pictures/misc/background"; $extension = ".png"; $a = rand(0,2); ?> <body style="background-image: url("<?php echo $file.''.$a.''.$extension; ?>"); background-repeat: no-repeat; background-attachment:fixed; background-position: 90% 250px; "> <?php //This should work maybe? ?> Link to comment https://forums.phpfreaks.com/topic/100410-random-background-image/#findComment-514033 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.