div layer and textlink help needed
I have this code in my site:
and the link is not clickable at all.
when i take out style="margin-top:-18px; margin-left: 20px;" the link becomes clickable but not positioned correctly. what is wrong? thanks.
edit: if you test the code it work but i dunno why it doesn't in my layout. btw javascript and innerHTML is used to call the links.
I have this code in my site:
HTML:
<div id="subNav" style="margin-top:-18px; margin-left: 20px;">
<a href="http://fdjklasjfak.com">lalala</a>
</div>
and the link is not clickable at all.
when i take out style="margin-top:-18px; margin-left: 20px;" the link becomes clickable but not positioned correctly. what is wrong? thanks.
edit: if you test the code it work but i dunno why it doesn't in my layout. btw javascript and innerHTML is used to call the links.
Code:
function displayMenu(currentMenu) {
var thisMenu = document.getElementById(currentMenu).innerHTML;
document.getElementById('subNav').innerHTML = thisMenu;
}
Last edited:






