I’ve created an interactive map using the wz_tooltip.js script and an image map. The popups work fine as you mouseover the buildign names but, within the pop up, I have an unordered list and a picture of the building aligned to the right of the list and an <h2> element.
The image covers over the <h2> element and the list appears over the image so that you can’t read the text. I have tried a bunch of different settings but can’t get it to work.
mmm… i can’t seem to see your code but i would perhaps suggest adding padding to your image. maybe also include it in a div and then add padding to the div. that should push your text to the side and below.
well, on your ul element you are telling it to clear both sides, so then you will actually have to add a break and then the image will be on top with the text at the bottom. You also just perhaps need to wrap your float text…
for instance…
css
divwrapper {
width:100%;
}
div h2 {
float:left;
width:48%;
}
div img {
float:right;
border:1px solid;
margin:6px;
width:50%;
}
div ul {
clear:left;
float:left;
white-space:nowrap;
margin-right:1em;
}