M
Miguel Dias Moura
Hello,
I need to display various links side by side and I have the code:
<div>
<a href="...">Link1</a><a href="...">Link2</a> ...
</div>
I get the code:
Link1Link2
However, my code line gets really long so VS2005 changes it to:
<div>
<a href="...">Link1</a>
<a href="...">Link2</a>
...
</div>
Now I get a space between each link:
Link1 Link2
I tried everything I could think of and I am not able to solve this.
Basically, I need to place on my web site footer something like:
Home | Documents | Contacts | Map | Copyright | ...
Could someone help me out?
I am on this for 2 days and the space shows up all the time.
Thank You Very Much,
Miguel
I need to display various links side by side and I have the code:
<div>
<a href="...">Link1</a><a href="...">Link2</a> ...
</div>
I get the code:
Link1Link2
However, my code line gets really long so VS2005 changes it to:
<div>
<a href="...">Link1</a>
<a href="...">Link2</a>
...
</div>
Now I get a space between each link:
Link1 Link2
I tried everything I could think of and I am not able to solve this.
Basically, I need to place on my web site footer something like:
Home | Documents | Contacts | Map | Copyright | ...
Could someone help me out?
I am on this for 2 days and the space shows up all the time.
Thank You Very Much,
Miguel