As you can see in the link, the top of the submenu is overlapping the teal bar (on the desktop version) and I want to move it down so it butts the bottom of the bar. I’m unable to get it to work. The over/under BackDraft menu bar does this perfectly, but I can’t seem to get the bar to be full width no matter what attributes I assign to it. It stops at 1200px.
After adding the code I have suggested you may find that the gap between the main menu items and the sub menus is too large meaning that the sub menu disappears before the pointer reaches it.
Add the following which essentially increases the height of the click area on each link to compensate.
span.style7 { padding: 10px 0px; }
This brings me to another point - naming.
FW helpfully gives a name to every item you create to avoid duplicate IDs but you should help yourself by changing these (item8, item10) to something more meaningful ie menu-wrapper, menu etc.
Similarly for your styles - style7 doesn’t mean much while menu-link means much more.
It will help you later on identify things from the code and from the items list in your sidebar.
Ah, yes, I noticed the disappearing sub menu after my last reply and was going to inquire about it this morning (NY time). Thank you for the additional information and tips. I will go back in and name my items properly as well.