Dreamweaver # link (1 Viewer)

Tansar

Registered User.
Local time
Today, 18:32
Joined
Dec 28, 2000
Messages
55
Hi,
Each time I add an a link / tag; all my links show the # sign. Eg:

<li><a href="#">Link 1</a></li>

Will render: Link 1(#)
Is there any way of gettting rid or not displaying the (#) ?

TIA

:)

Dreamweaver CS5
 

Minkey

Registered User.
Local time
Today, 17:32
Joined
Jul 7, 2004
Messages
661
I assume it's a HTML page

If so are you making a list? li is the HTML tag for that so in theory li on it's own should make a bulleted link like this in the design view:

  • Link 1

In fact just tested it and it works fine for me (CS5) so not sure what causing this - maybe some strange setting but you mentioned it renders as Link 1(#) are you viewing it in a browser because that should give you a list without the bullets.

You could add the following tags see if these change anything (at the beginning and end of the code):

<ul> </ul> this should give you a bulleted list when viewed in a browser
<ol> </ol> this should give you a numbered list when viewed in a browser

If you not making a list just a link remove the li tags (you can still make what appears to be a list this way)
 

lightray

Registered User.
Local time
Tomorrow, 05:32
Joined
Sep 18, 2006
Messages
270
the # is a default, you would normally enter the link name to link off to.

If you don't want it to show until you're ready to put the links in, remove 'href="#"'

If you didn't want a link at all, remove <a href="#"> and </a>
 

Users who are viewing this thread

Top Bottom