Hello, I noticed on this site: http://www.torrenthound.com/ A letter standing still in the left corner (down). Can anyone tell me what are they using for this? I want to add a image to my wordpress blog. Thanks. KriSs
Add this to your CSS: body { background: url('URL_GOES_HERE') bottom left no-repeat; background-attachment:fixed; } Code (markup): Where URL_GOES_HERE is the direct link to the image. For example, that website uses this picture: http://www.torrenthound.com/images/page_back.gif And they have: body { background: url('/images/page_back.gif') bottom left no-repeat; background-attachment:fixed; } Code (markup):
Ohh... this is a such simple CSS? Silly me for not seeing it from the beginning . Thanks Steven Johns !