simple edit to the top ?

Discussion in 'HTML & Website Design' started by dejan, May 2, 2009.

  1. #1
    hello

    i have a banner on my site and there is an empty place on the top right beside the banner and i want to add a little pic to this empty place

    if someone can help me do this pm me please i think it's really simple just a little picture

    thanks

    edit : i managed to add the pic but i want to move it a little to the right someone know the code to this ? i don't mean align right cause it will be far from where i want it i want to move it a little if someone know please help me
     
    dejan, May 2, 2009 IP
  2. hkmike

    hkmike Peon

    Messages:
    38
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    you can use the following to move it to the right:
    #image {
    position: relative ;
    left: 10px;
    }
    Code (markup):
    It may seem counter intuitive to use left when you want to move it right, but left tells the browser how far from the left to move the image.
     
    hkmike, May 2, 2009 IP