[CSS] Frage zu CSS

Saijori
Hallo... ich möchte bei meiner CSS das gerne so haben das die Link Farbe im normalen Mainframe anders ist als in der Tabelle.... . Irgendwie kriege ich das jedoch nicht wirklich hin, denn ich dachte so wie ich es gemacht habe müsste es richtig sein...

Hier meine CSS:

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
A:link {
color: #E2B8D3 ; text-decoration: none;
 }

A:visited {
color: #E2B8D3 ; text-decoration: none;
 }

A:hover {
color: #E2B8D3 ; text-decoration: overline;
 }

A:active {
color: #E2B8D3 ; text-decoration: none;
 }

BODY {
color: #E2B8D3;
text-align : center;
font-size: 11px ;
font-family: Verdana;
background-attachment: fixed;
background-position:0px 0px;
scrollbar-3dlight-color: #6C4A32;
scrollbar-arrow-color: #E2B8D3;
scrollbar-darkshadow-color: #6C4A32;
scrollbar-face-color: #6C4A32;
scrollbar-highlight-color: #6C4A32;
scrollbar-shadow-color: #6C4A32;
scrollbar-track-color: #6C4A32;
  }

table  {
background-color: #E2B8D3;
color: #6C4A32;
text-align : center;
font-size: 11px ;
font-family: Verdana;
border: 1px #6C4A32 dashed;
A:link {
color: #6C4A32 ; text-decoration: none;
 }

A:visited {
color: #6C4A32 ; text-decoration: none;
 }

A:hover {
color: #6C4A32 ; text-decoration: overline;
 }

A:active {
color: #6C4A32 ; text-decoration: none;
 }
  }

td, tr  {
background-color: #E2B8D3;
color: #6C4A32;
text-align : center;
font-size: 11px ;
font-family: Verdana;
border: 1px #6C4A32 solid;
A:link {
color: #6C4A32 ; text-decoration: none;
 }

A:visited {
color: #6C4A32 ; text-decoration: none;
 }

A:hover {
color: #6C4A32 ; text-decoration: overline;
 }

A:active {
color: #6C4A32 ; text-decoration: none;
 }
  }

 input  {
background-color: #E2B8D3;
color: #6C4A32;
text-align : center;
font-size: 11px;
font-family: Verdana;
border: 1px #6C4A32 dotted;
  }

 select, textarea  {
 color: #6C4A32;
text-align : center;
font-size: 11px ;
font-family: Verdana;
background-attachment: fixed;
background-position:0px 0px;
scrollbar-3dlight-color: #6C4A32;
scrollbar-arrow-color: #E2B8D3;
scrollbar-darkshadow-color: #6C4A32;
scrollbar-face-color: #6C4A32;
scrollbar-highlight-color: #6C4A32;
scrollbar-shadow-color: #6C4A32;
scrollbar-track-color: #E2B8D3;
background-color: #E2B8D3;
color: #6C4A32;
text-align : center;
font-size: 11px;
font-family: Verdana;
border: 1px #6C4A32 dashed;
  }

  h1  {
background-color: #6C4A32;
background-attachment: fixed;
border: 1px #E2B8D3 dashed;
color: #E2B8D3;
font-family: Verdana;
font-weight: normal;
font-size: 11px;
text-align: center;
width: 100%;


LG Lena
Saijori
Ah cool großes Grinsen

Ich versuche es gleich großes Grinsen

Thx :-*

/edit/

Es funktioniert großes Grinsen
Doch irgendwie nicht bei Pop-Ups unglücklich
Saijori
Oki großes Grinsen

Also:

Das Pop-Up hat ja in der Tabelle auch einen Link... doch dieser wird nicht braun sondern dann verschwindet die eine Zeile doch manchmal geht es unglücklich Aber soweit ich weiß spinnt nur mein Programm den mit dem anderen geht es von daher hat sich das Problem schon erledigt großes Grinsen

LG Lena