Hallo zusammen!
Ich habe ein submenu, das im urprünglichen Design auf der linken Seite stand (und dort wunderbar funktioniert hat), aber jetzt rechts stehen soll. Die Links im Submenu sind in einer ul sortiert und kaum steht das submenu rechts, sind Links anscheinend nicht mehr existent! Kein Mauseffekt, kein Rollover, keinerlei Reaktion aufs Klicken ...
Das ist der Code:
<div id="submenu">
<ul>
<li><a href="http://www.muster.de" target="_blank">
<img src="images/bild.jpg" width="180" height="180"></a>
</li>
<li><a href="info.htm">Mehr Informationen</a>
</li>
</ul>
</div>
Dazu folgendes CSS:
#submenu {
float: right;
width: 240px;
margin-right: 45px;
background-image: url(submenu.jpg);
background-repeat: no-repeat;
height: 300px;
padding-top: 10px;
}
#submenu ul {
margin-left:40px;
margin-top:0px;
list-style: none;
line-height: 1em;
}
#submenu li {
margin-bottom: 11px;
}
#submenu a {
border: none;
text-decoration: none;
color: #333333;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: normal;
font-style: italic;
color: #424242;
}
Geändert zum früheren Layout habe ich nur das float und beim margin ein paar Pixel korrigiert.
Kann mir jemand einen Tipp geben, warum die Links auf einmal nicht mehr anklickbar sind?
Danke!