I’m starting an experimental website here: Kiwanja and I’m having problems with the DHTML menu.
-
Positioning. Is there a way to put the menu in the dark red cell that I made?
-
Targets. How do you make the links in the menu target the IFrame that I have on that page?
Any help would be appreciated. Thanks 
Jack
2
1)You can use css absolute positioning. What you’ll want to do is to put
<div id=“menu”>THE MENU CODE</div>
then in the css:
#menu {
position: absolute;
left: Xpx;
top: Ypx;
}
where the X is the number of pixles from teh left of the page and the Y is the number of pixels from the top.
2)You’ll need something like <a href=“asdf.html” target="_self">woo</a> in your code. You can find more about it here and here