Hi,
I don't know what kind of position shall I announce if the parent has a position: absolute.
Here's the code,
<div id="new_map">
<div id="map_nbc_pop">
<div class="nm_bubbletop1"></div>
<div id="nm_bubblebg">
<ul class="nm_left">
<li><a href="#">Chetwynd</a></li>
<li><a href="#">Fort St James</a></li>
<li><a href="#">Fort St John</a></li>
</ul>
<ul class="nm_right">
<li><a href="#">McBride</a></li>
<li><a href="#">Prince George</a></li>
<li><a href="#">Prince Rupert</a></li>
</ul>
</div>
<div class="nm_bubblebelow1"></div>
</div>
</div>
here's the sample CSS, I just remove the other for viewing...
#new_map { position: static }
#map_nbc_pop { position: absolute }
The problem for me is in .nm_bubbletop1, #nm_bubblebg, .nm_bubblebelow1 What position shall I use? Because they are not properly layered on the browser.
<div class="nm_bubblebelow1"></div>
<div class="nm_bubbletop1"></div>
<div id="nm_bubblebg"></div>
What I want is this,
<div class="nm_bubbletop1"></div>
<div id="nm_bubblebg"></div>
<div class="nm_bubblebelow1"></div>
Thank you!