I've been scratching my head on this all night, i'm trying to position in CSS a image in the {body} element (i hope that is the right term, i'm still new to all this).
Heres what i have right now:
body {
background-color: #ffffff;
color:#000000;
background-image: url(chapter11bkg.jpg);
background-repeat: no-repeat;
background-position: left bottom;
}
No matter what i do i cannot get the "background-position: left bottom" part to work, thing is if i remove that part of the code the image will appear.
Now i use Mozilla Firefox to preview all changes i make to the CSS, when i tried it out in IE it did work though, is there a problem with positioning images in CSS in Mozilla? is there anything i can do to make it work?
Cheers.