What do they use here?

Discussion in 'Programming' started by kriss_reea, Jun 19, 2011.

  1. #1
    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
     
    Solved! View solution.
    kriss_reea, Jun 19, 2011 IP
  2. #2
    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):
     
    Steven Johns, Jun 19, 2011 IP
  3. kriss_reea

    kriss_reea Well-Known Member

    Messages:
    217
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    125
    #3
    Ohh... this is a such simple CSS?

    Silly me for not seeing it from the beginning .

    Thanks Steven Johns !
     
    kriss_reea, Jun 21, 2011 IP