Nein, emet, er meint den das mouseover beim Link "Übersicht", und nicht die HR Linie.
Also, so wie ich das sehe funktioniert da nicht die CSS Datei.
Schauste mal hier:
http://www.cobrafahren.at/includes/modul…llery/modul.css
Und machst das folgende dazu:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#modul #modul_ftpgallery a {
color: #555;
text-decoration: none;
}
#modul #modul_ftpgallery a:hover {
color: #555;
text-decoration: none;
}
|
oder wenn Du sowieso beide gleich haben willst einfach so:
|
Quellcode
|
1
2
3
4
5
6
|
#modul #modul_ftpgallery a, #modul #modul_ftpgallery a:hover {
color: #555;
text-decoration: none;
}
|
Sollte klappen!
Grund für den aktuellen Zustand - du hast in deiner main.css keine ordentliche a-Formatierung drin, die fehlt!