Need help with code

Discussion in 'HTML & Website Design' started by allwayslearning, Jan 14, 2009.

  1. #1
    Hi

    I have text links in my home page that I want to be lined up to look like a verticsl list. If I put a blank space between them then there is a space but that is not how I want them.
    They should be in a viritcle list form with no space between.
    What should I do to make this happen.. Here are some samples of my current code.

    <A HREFhttp://www.webbusinesstoolsonline.com/SBI-services.htm >outsoruce with SBI</A


    <A HREFhttp://www.webbusinesstoolsonline.com/internet-home-business-idea.html> Make money with SBI</A

    The end result shouldlook like this

    outsource with SBI
    Make money with SBI

    With no spaces. What kind of code I I need to make this the way I want it.
    Where does the code go?
     
    allwayslearning, Jan 14, 2009 IP
  2. ThePickyOne

    ThePickyOne Peon

    Messages:
    30
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    after your first link
    <A HREFhttp://www.webbusinesstoolsonline.com/SBI-services.htm >outsoruce with SBI</A>
    Place a break as follows
    <br />
     
    ThePickyOne, Jan 14, 2009 IP
  3. ThePickyOne

    ThePickyOne Peon

    Messages:
    30
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    or you could use this method:
    <ul style="list-style:none">
    <li><A HREF="http://www.webbusinesstoolsonline.com/SBI-services.htm" >outsoruce with SBI</A></li>
    <li><A HREF="http://www.webbusinesstoolsonline.com/internet-home-business-idea.html"> Make money with SBI</A></li>
    </ul>
     
    ThePickyOne, Jan 14, 2009 IP
  4. ConquestYoutube

    ConquestYoutube Peon

    Messages:
    138
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    just use <BR after each line.
     
    ConquestYoutube, Jan 14, 2009 IP
  5. camp185

    camp185 Well-Known Member

    Messages:
    1,653
    Likes Received:
    51
    Best Answers:
    0
    Trophy Points:
    180
    #5
    If you are making a list do what the ThePickyOne said.
     
    camp185, Jan 14, 2009 IP