'Tiling' Header/Logo/Border image help needed...

Discussion in 'JavaScript' started by Skillman13, May 26, 2010.

  1. #1
    I'm not 100% sure whether this is HTML/CSS or Javascript...
    So sorry in advanced...

    I have just purchased 2 images (headers)

    One is a image which I plan to have at the top of my page in the centre
    Second is a 'buffer image' which I plan to have beside that image -filling/tiling the screen until 100% is filled...
    -So it looks like one image along the whole screen/header... (56px height)

    But I have no idea how do to this?

    Can someone please explain (Or point to a tutorial?)

    Thanks alot...

    James
     
    Skillman13, May 26, 2010 IP
  2. Skillman13

    Skillman13 Peon

    Messages:
    229
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Anyone? ... :(
     
    Skillman13, May 26, 2010 IP
  3. Skillman13

    Skillman13 Peon

    Messages:
    229
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Willing to pay if necessary =]
     
    Skillman13, May 26, 2010 IP
  4. flexdex

    flexdex Peon

    Messages:
    104
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    
    <!-- The background image of the DIV element will be repeated on x axis / the DIV is 56px height -->
    <div style="background-image: url(http://static.php.net/www.php.net/images/php.gif); background-repeat: repeat-x; height: 56px">
    <!-- The IMG is centered along the DIV -->
    <center><img src="http://static.php.net/www.php.net/images/php.gif"></center>
    </div>
    
    Code (markup):
     
    flexdex, May 27, 2010 IP