> Du musst im CSS explizit das text-decoration: none festlegen.
> Wenn das nicht geht, dann setze es  halt im Skript wieder zur�ck...

Auszug aus der inc_style.css:

___
a,a:visited,a:link,a:active {
        color:#CCCCCC;
        size:10px;
        text-decoration:none;
        font-weight:bold;
}

a:hover {
        color:#FFFFFF;
        text-decoration:underline;
        font-weight:bold;
}
___

Auszug aus der navigation.asp:

__
.Write " <SCRIPT TYPE=""text/javascript"">" & vbNewLine &_
         "  <!--" & vbNewLine &_
         "  function ChangeLinkOver(ID) {" & vbNewLine &_
         "   eval('parent.BottomFrame.'+ID).style.textDecoration='underline';" &
vbNewLine &_
         "   eval('parent.BottomFrame.'+ID).style.color='#FFFFFF';" & vbNewLine &_
         "  }" & vbNewLine &_
         "  function ChangeLinkOut(ID) {" & vbNewLine &_
         "   eval('parent.BottomFrame.'+ID).style.textDecoration='none';" &
vbNewLine &_
         "   eval('parent.BottomFrame.'+ID).style.color='#CCCCCC';" & vbNewLine &_
         "  }" & vbNewLine &_
         "  //-->" & vbNewLine &_
         " </SCRIPT>" & vbNewLine &_
___

Und dann die Links:

<A HREF=""..."" onMouseOver=""ChangeLinkOver('link4')""
onMouseOut=""ChangeLinkOut('link4')"">


Nur bleibt der Link dann halt "nicht unterstrichen" und "#CCCCCC" und �ndert
sich nicht mehr, wenn ich dar�ber fahre.


~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
Kaffeepause im United Planet Communityserver ...
http://www.intrexx.com/communityserver                         
_______________________________________________
Coffeehouse mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/coffeehouse

Antwort per Email an