HI,
Well it is working in a fashion but it is being over-ridden by all the other anchor styles for your existingpop up boxes.
Just to show its working use this code:
Code:
li#africalarge{
width:61px;
height:56px;
background:transparent;
border:none;
padding:0;
margin-left:-4px;
margin-top:-5px;
}
#maplarge li{ position:relative;}
li#africalarge ul{
position:absolute;
width:200px;
background:#fff;
left:-999em;
top:50px;
border:1px solid #000;
}
#maplarge ul a{width:auto;height:auto!important;background:none;}
#maplarge li:hover ul,#maplarge li.over ul{left:0}
That will show you that it will work but you need to clear out all the other styling as the new boxes will be in the above format instead. Prseently you have styles being redefined twice which is why nothing shows.
It really is quite simple
Bookmarks