What is wrong with my site?

M

mewizard

Guest
http://quake3.barrysworld.net/sdeath

Hi, im working with CSS in my site but the problem is the 2 'testing links' on the left - Home and Contact Us - are underlined and I dont want them underlined.
My CSS looks like this :

<style>
A:link {text-decoration: none;
text-decoration: none;
color: #999999 }
A:visited {text-decoration: none;
text-decoration: none;
color: #999999 }
A:active {text-decoration: none;
text-decoration: none;
color: #999999 }
A:hover {text-decoration: none;
text-decoration: none;
color: #000033 }
</style>

Please take your time to help me as this is a pain in the ass.

http://quake3.barrysworld.net/sdeath
 
O

old.XeneX

Guest
I took a look at your site and noticed a few things.

Code:
<script language="JavaScript1.2" src="../../WINDOWS/Desktop/My File/fw_menu.js"></script>

This is pointing to your HDD.

As for the CSS problem.

Code:
<link rel="stylesheet" href="style_sheet.css" type="text/css">

All seems fine here. Although, when linking to an external CSS sheet, you shouldn't use <style> tags within it.

I took a look at http://quake3.barrysworld.net/sdeath/style_sheet.css and found what you listed above.

I also Saved your site to my Desktop via Save As.., Opened the folder, and the css file was

Code:
UNKNOWN {
	COLOR: #999999; TEXT-DECORATION: none
}
A:visited {
	COLOR: #999999; TEXT-DECORATION: none
}
A:active {
	COLOR: #999999; TEXT-DECORATION: none
}
A:hover {
	COLOR: #000033; TEXT-DECORATION: none
}

You need to add:

Code:
A:link {
	COLOR: #000033; TEXT-DECORATION: none
}

To the above.

Its strange that one was linked via the actual website, but another was actually saved...
 
M

mewizard

Guest
Thanx, ill take a look at all this, hopfully it works
 

Users who are viewing this thread

Similar threads

W
Replies
4
Views
666
wyrd_fish
W
W
Replies
3
Views
925
wyrd_fish
W
D
Replies
8
Views
778
FatBusinessman
F
M
Replies
3
Views
664
Mr. 47
M
1
Replies
4
Views
643
MYstIC G
M
Top Bottom