Ciao a tutti
avrei un problemino su un sito che sto facendo
www.medlars.it

Le immagini che ci sono sulla destra al passaggio del mouse si aprono
le prime in alto si dedono giuste, quelle in basso vengono tagliate e non
riesco a sistemarle

Qualcuno mi può aiutare??????????????????

Questo lo scrip che ho usato:

<style type="text/css">
#BLINK
{
color: #000000;
font: Bold 12px Verdana;
}

a span.container
{
display:none;
}
a span.container2
{
display:none;
}
a:hover { position: relative; }

a:hover span.container {
background: #efa60a;
display:block;
z-index: 1;
}
a:hover span.container2 {
background: #efa60a;
display:block;
z-index: 1;
}
a:hover span.container {
/* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
position: absolute; left: -150px; top: -30px;
}
a:hover span.container2 {
/* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
position: absolute; left: -280px; top: -30px;
}
a:hover > span.container {
/* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
position: fixed;
top: 10px;
left: 30px;
}
a:hover > span.container2 {
/* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
position: fixed;
top: 10px;
left: 30px;
}
</style>