Veröffentlicht 15. Januar 200421 j Servus! Gibt es in HTML (also kein CSS) einen Befehl mit dem ich Grundsätzlich das unterstreichen von Links deaktivieren kann??? Ich verwende momentan ein CSS-Style und da sitzt irgendwo ein Bug! weil manchmal unterstreichter er sie und manchmal nicht! und wenn man den Link benutzt hat da sind sie auf keine Fall mehr unterstrichen! mein CSS müsste aber stimmen... <STYLE TYPE="TEXT/CSS"> <!-- BODY { SCROLLBAR-3D-LIGHT-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #C0C0C0; SCROLLBAR-FACE-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #808080; SCROLLBAR-DARKSHADOW-COLOR: #000000; SCROLLBAR-TRACK-COLOR: #000000; } //--> a:link { font-weight:bold; color:#000000; text-decoration:none } a:visited { font-weight:bold; color:#000000; text-decoration:none } a:hover { font-weight:bold; color:#FF0000; text-decoration:none } a:active { font-weight:bold; color:#000000; text-decoration:none } a:focus { font-weight:bold; color:#FF0000; text-decoration:none } </style> Vielleicht gibt es ja auch ein Java Script oder so! Bin für jeden Rat dankbar!
15. Januar 200421 j So gehts: <STYLE TYPE="TEXT/CSS"> <!-- BODY { SCROLLBAR-3D-LIGHT-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #C0C0C0; SCROLLBAR-FACE-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #808080; SCROLLBAR-DARKSHADOW-COLOR: #000000; SCROLLBAR-TRACK-COLOR: #000000; } //--> a { color:#000000; text-decoration:none; } a:link { font-weight:bold; color:#000000; text-decoration:none; } a:visited { font-weight:bold; color:#000000; text-decoration:none; } a:hover { font-weight:bold; color:#FF0000; text-decoration:none; } a:active { font-weight:bold; color:#000000; text-decoration:none; } a:focus { font-weight:bold; color:#FF0000; text-decoration:none; } } </style> [/PHP]
15. Januar 200421 j Autor ist die offene Klammer über dem Style am Schluß gewollt??? Weil die wird da zwar zu gemacht aber nirgends geöffnet oder?
15. Januar 200421 j Sorry, kleiner Tippfehler Dies ist der eigentlich wichtige Part, der hinzugefügt werden sollte: a { color:#000000; text-decoration:none; }
Archiv
Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.