Hi guys - I have this code: <html> <head> <style type="text/css"> body { background-image: url('file:///C:/Documents%20and%20Settings/Eigenaar/Bureaublad/10.jpg'); background-repeat: repeat-x } </style> </head> Code (markup): This code makes an image repeat itself over the x position but puts itself on top of the screen. What must i ad or change in order to make the image start repeating not from the top but let's say 100 pixels below from the absolute top of the screen? Thanks in advance guys.
Try background-position: center 100px; Code (markup): The first is the horizontal offset/position and the second is the vertical. cheers, gary
background: url('file:///C:/Documents%20and%20Settings/Eigenaar/Bureaublad/10.jpg') 0 100px repeat-x; See CSS Background. Edit: didn't see the other posts. Damn quick reply.