Izzy ♥ Posted October 30, 2006 Posted October 30, 2006 You know those pics that people "fix" in the corners of their lookups? They move down when people scroll... I think they may be in the background but I have a widescreen computer so I never actually see any text over them so I couldn't say for sure... Can anyone tell me some simple code to get one onto my lookup?
Matt Posted October 30, 2006 Posted October 30, 2006 This is a stab in the dark, here. I haven't tried it myself on Neopets. But would this work? <style> body { background-color:000000; background-image:url('******URLOFIMAGE******'); background-attachment: fixed; background-position:***PLACING***; background-repeat:no-repeat; border-color:FFFFFF; border-width:0px; border-style: solid; } </style> * Replace ******URLOFIMAGE****** with the URL of the image in the corner. * Replace ***PLACING*** with either 'top left', 'top right', 'bottom left' or 'bottom right'.
Samuel Posted October 30, 2006 Posted October 30, 2006 I did a bit of research, and this does the trick: <style> body {background: url(IMAGEURLHERE); background-attachment: fixed; background-position: right bottom; background-repeat: no-repeat;} </style>
Izzy ♥ Posted October 31, 2006 Author Posted October 31, 2006 Thanks a lot guys! That should be perfect.
Recommended Posts