PDA

View Full Version : HTML links do nothing


adamcdyoung
10-12-2006, 05:46 PM
Hi--

I'm currently building a website for a friend, teaching myself Flash along the way thanks to all these great tutorials/forums/etc.

The text parts of the site are imported XHTML files, but for some reason, the links won't work. I've tried putting several different variations of the <A> tag in there, but to no avail.

Here's the site to have a look, anyway:
http://www.colingrant.ca (The page with the links is the Contact page)

Also, special characters like é won't show up properly with the &eacute; method. Any suggestions? Thanks in advance!

Adam

adamcdyoung
10-12-2006, 05:51 PM
I suppose it would have helped to say how I was adding the XHTML codes...

The current code simply says:
<A href="http://www.mylinkhere.com">Link</A>
Ideally, I'd like it to be
<A href="http://www.mylinkhere.com" target="_blank">Link</A>

The .css style sheet that's accessed has the <A> tag defined like this:
A {
font-family: Arial,Helvetica,sans-serif;
color:FFFFFF;
font-size: 10px;
display: inline;
text-decoration:underline;
}

Any help would be greatly appreciated, and thanks again!