Neopets HTML lookup layout coding that actually WORKS?

Misha M

New member
I've tried ALL the codes! NONE of them have worked! Im trying to set a image as my background, tiled. and fixed. but none of the codes have any effect on my lookup!
Umm...Glynn.all whatever: I tried that already. It doesnt effect the page in anyway.
 
I can only presume you are building in tables and have never used css before ( as someone that knows css would never ask a question like that )

put something like this between the <head> tags

<style type="text/css">
<!--

body {
background-image:url('back.jpg');
background-attachment:fixed;
}

-->
</style>


back.jpg needs to be the root pointing to the image, for example

background-image:url('images/back.jpg');

if you could post the site to my forum I can check it and do it for you ( address in sources )
 
Back
Top