How to move the images to the right

Discussion in 'HTML & Website Design' started by chrisj, Nov 14, 2007.

  1. #1
    I have these images and text. Is there any code I can use to move these 7 lines over to the right a little? Thanks.

    <font face="Arial" color="#000000" size="3"><IMG src="/images/hphone.gif"> <a href="?action=login">&nbsp;&nbsp;Home</a><br><br>
    
    <IMG src="/images/hphone1.gif"><a href="?action=register">&nbsp;&nbsp;Register</a><br><br>
    
    <IMG src="/images/hphone2.gif"> <a href="?action=faq">&nbsp;&nbsp;FAQ</a><br><br>
    
    <IMG src="/images/hphone3.gif"> <a href="?
    action=terms">&nbsp;&nbsp;Terms Of Use</a><br><br>
    
    <IMG src="/images/hphone4.gif"> <a href="?action=contact">&nbsp;&nbsp;Contact Us</a><br><br>
    
    
    <IMG src="/images/hphone5.gif"><a href="?action=forgotpass">&nbsp;&nbsp;Forgot Password</a><br><br>
    
    <IMG src="/images/hphone6.gif"><a href="?action=forgotusername">&nbsp;&nbsp;Forgot Username</a><br></font>
    Code (markup):
     
    chrisj, Nov 14, 2007 IP
  2. Karen May Jones

    Karen May Jones Prominent Member

    Messages:
    3,469
    Likes Received:
    290
    Best Answers:
    1
    Trophy Points:
    380
    #2
    Hi, are you using the align tag? How about making a table with padding?
     
    Karen May Jones, Nov 14, 2007 IP
  3. twistedspikes

    twistedspikes Notable Member

    Messages:
    5,694
    Likes Received:
    293
    Best Answers:
    0
    Trophy Points:
    280
    #3
    Put a div around them or something and use padding or margin on that div.
     
    twistedspikes, Nov 14, 2007 IP
  4. YIAM

    YIAM Notable Member

    Messages:
    2,480
    Likes Received:
    240
    Best Answers:
    0
    Trophy Points:
    280
    #4
    yes, try something like this.

    <div style="margin-left:10px;">
    --- Your code --

    </div>
     
    YIAM, Nov 14, 2007 IP