PDA

View Full Version : is there an html guru in the house?


geekdiggy
04-23-2004, 04:47 AM
i don't have in my repertoir the html for a background with one unrepeated image fixed on the bottom left hand corner.

<style type="text/css">BODY {background-image: url("http://img38.photobucket.com/albums/v118/geekdiggy/pridegpelims_07_02.jpg");
background-attachment: fixed;} <---doesn't seem to work.

can anyone help?

dhacke
04-23-2004, 07:13 PM
<style type="text/css">BODY {background-image: url("http://img38.photobucket.com/albums/v118/geekdiggy/pridegpelims_07_02.jpg");
background-attachment: fixed;} <---doesn't seem to work.

can anyone help?

well.. I would put

<style type="text/css">BODY { background-color: #000000; background-image: url(http://img38.photobucket.com/albums/v118/geekdiggy/pridegpelims_07_02.jpg); background-attachment: fixed; }

so.. you didn't need the " " around the image url, and you should really specify a background color for before the image loads, and incase it doesn't ;)

and of course don't forget to close the style tag </style> in the page too

geekdiggy
04-23-2004, 10:15 PM
*edit* nevermind i got it