<a> Tag Problem.

  • Thread starter Thread starter Miguel Dias Moura
  • Start date Start date
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
 
And on another note, a problem that minor.....2 days you put on
it?seriously, it will probably look neater with link1 | link 2 but 2 days,
because of a space? Its a wonder you ever finish a project
 
Well,

I haven't spent the entire 2 days on it.
I just have trying to solve this for the past 2 days.

Cheers,
Miguel
 
In VS 2003, it is
Tools --> Options --> Text Editor --> HTML/XML --> Word Wrap
(Check-Box)

In VS 2005, it is
Tools --> Options --> Text Editor --> HTML --> Format --> Tag Wrapping
(Frame)


Thanks
 
Back
Top