Hi DDAdmin,
Thank you very much for your response and you did understand me correctly.
Here's the code I have so far. The flowerdivcontainer i see (if correct) like the "parent" and then the other DIV's are like the "children", or at least, that's how I'm trying to get this to work. So for example, the head tab, I would want to be absolute in respect to the flowerdivcontainers positioning on the page. How would I order it given this is what I have below?
Again, thank you very much for your time in helping me, it is greatly appreciated!
Code:
<div id="virtual" style="display:none; position: absolute; width:603px; height:275px; background-color:black; background-image: url(images/banners/sample1.jpg); border:0px">
</div>
<div id="head" style="display:none; position: absolute; left: 0px; width:1259px; height:274px; background-color:black; background-image: url(images/banners/pan1.jpg); border:0px">
</div>
<div id="testdiv" style="display:none; position: absolute; left: 50px; width:500px; height:500px; background-color:black;border:0px">
</div>
<div id="crest" style="display:none; position: absolute; left: 189px; width:467px; height:52px; border:0px">
<img src="images/crest.gif">
</div>
<div id="ice" style="display:none; position: absolute; top: 36px; width:408px; height:102px; border:0px; background-color:black; background-image: url(images/banners/subs/ice.gif);"></div>
<div id="village" style="display:none; position: absolute; top: 36px; width:408px; height:102px; border:0px; background-color:black; background-image: url(images/banners/subs/village.gif);">
</div>
<div id="flowernote2" style="display:none; position:absolute; right: 200px; width:80px; height:80px; background-color:black; color:white">
Arbitrary DIV 2
</div>
<div id="newsletter" style="display:none; overflow: hidden; position: absolute; left: 0px; width:1259px; height:274px; background-color:black; background-image: url(images/banners/pan3.jpg); border:0px"></div>
<div id="flowernote3" style="display:none; position:absolute; right: 30px; width:140px; height:140px; background-color:navy; color:white">
Arbitrary DIV 3
</div>
<div id="flowerdivcontainer" style="border:0px; width:415px; height: 275px; background-color: #000000; padding: 2px">
</div>
<div id="flowertabs" class="modernbricksmenu2">
<ul>
<li><a href="includes/main/welcomepage.php" rel="flowerdivcontainer" class="selected">WELCOME</a></li>
<li><a href="external2.htm" rel="flowerdivcontainer" rev="virtual">HEAD</a></li>
<li><a href="external3.htm" rel="flowerdivcontainer" rev="head,ice">NEWSLETTER</a></li>
<li><a href="external4.htm" rel="flowerdivcontainer" rev="newsletter,village">OFSTED</a></li>
<li><a href="#">VACANCIES</a></li>
</ul>
</div>
<br style="clear: left" />
<script type="text/javascript">
var myflowers=new ddajaxtabs("flowertabs", "flowerdivcontainer")
myflowers.setpersist(true)
myflowers.setselectedClassTarget("link") //"link" or "linkparent"
myflowers.init()
</script>
Bookmarks