....
tmm yaptım arkadaşlar ama bu div i linkin üstüne koyduğumuz zaman ancak div üstüne gelince duruyor diğer şekilde gidiyor. yani div in 3 pixel yanında açılmasını nasıl sağlarız bu div in
<script>
function GizleGoster(idAc){
document.getElementById(idAc).style.display = 'block';
}
function GizleGoster2(idAc){
document.getElementById(idAc).style.display = 'none';
}
</script>
<a href="ceviz.net" onmouseover="GizleGoster('Layer1')"
onmouseout="GizleGoster2('Layer1')" >www.ceviz.net</a>
<div id="Layer1" onmouseover="GizleGoster('Layer1')" onmouseout="GizleGoster2('Layer1')" style="position:absolute; left:76px; top:7px; width:70px; height:56px; z-index:1; visibility: visible;">sadasdsad</div>
|