Jump to content

Just a quick question...


Izzy ♥

Recommended Posts

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?

Link to comment
Share on other sites

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'.

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...