Hallo,
ich bin leider ein ziemlicher CSS Amateur und komme noch nicht ganz mit klar.
Ich habe einen ziemlich coolen code schnipsel für spezielle grafik buttons gefunden.
Jetzt will ich aber, dass nicht alle links betroffen sind sondern nur bestimmte links:
Also Hier ist mein script:
Jetzt sind alle links der folgenden Art betroffen:
<a href....
In meinem konkreten Fall will ich dass nur die buttons (im screenshot) links betroffen sind. Die buttons rechts sollen einfach ein normaler link sein.

ich bin leider ein ziemlicher CSS Amateur und komme noch nicht ganz mit klar.
Ich habe einen ziemlich coolen code schnipsel für spezielle grafik buttons gefunden.
Jetzt will ich aber, dass nicht alle links betroffen sind sondern nur bestimmte links:
Also Hier ist mein script:
Code:
<style type="text/css">
<!--
a {
display:block;
color:#000;
background-color:#999;
width:90px;
padding:0px;
font-size:10px;
font-family:Verdana, Arial, sans-serif;
font-weight:bold;
text-decoration:none;
text-align:center;
margin:10px;
border:5px solid #333;
background-image:url(hinter.gif);
}
a:hover {
display:block;
color:#fff;
background-color:#000;
background-image:url(hinter_on.gif);
}
-->
</style>
<a href....
In meinem konkreten Fall will ich dass nur die buttons (im screenshot) links betroffen sind. Die buttons rechts sollen einfach ein normaler link sein.
