How to insert a <div> in FP2003

J

Jeremy

I use Jon Spivey's recipe for flyout menus. (Thanks Jon!)

He uses a <div> for each menu item. I have been hand coding these in the
Code pane. Is there a way to insert a <div> in the Design pane? For
instance, how could I insert "link6" in the Design Pane, in the code below?

Sample code follows:
--------------------------------------------------
<div id="nav">
<div>
<a id="link1" href="#" onmouseover=" openMenu('sub1');
swapLinkClass(this)">Link One</a></div>
<div>
<a id="link2" href="#" onmouseover=" openMenu('sub2');
swapLinkClass(this)">Link Two</a></div>
<div>
<a id="link3" href="#" onmouseover=" openMenu('sub3');
swapLinkClass(this)">Link Three</a></div>
<div>
<a id="link4" href="#" onmouseover=" openMenu('sub4');
swapLinkClass(this)">Link Four</a></div>
<div>
<a id="link5" href="#" onmouseover=" openMenu('sub5');
swapLinkClass(this)">Link Five</a></div>
</div>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top