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?
after your first link <A HREFhttp://www.webbusinesstoolsonline.com/SBI-services.htm >outsoruce with SBI</A> Place a break as follows <br />
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>