drop down submenu

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to create a non-java menu item .. (simular to the side
vertical menu on the community website, but my menu is horizontal. (when you
click on a button a submenu drop down with more selections.) I tried with
layers and it worked but the layer keep moving (I centered the page) and on
a 800x600 resolution it would be fine, but on 1024x768 and higher the layer
(or drop down menu) is way out of place.
Any help would be appreciated
 
Drop down menus

JavaScript/Behaviours (for FrontPage 2003)
http://www.interlacken.com/winnt/tips/tipshow.aspx?tip=28
and
http://myweb.tiscali.co.uk/jonspivey/menus/index.html

(mainly) CSS (all versions of FrontPage):
http://www.seoconsultants.com/css/menus/tutorial/


To use in a centred page, place the menu in a relatively positioned div.

<div style="position: relative;">menu goes here, with all the associated
layers0</div>

This will "lock" any layers in place as the browser portal is re-sized.
 
Thank Ronx, the layers now work just fine.

Ronx said:
Drop down menus

JavaScript/Behaviours (for FrontPage 2003)
http://www.interlacken.com/winnt/tips/tipshow.aspx?tip=28
and
http://myweb.tiscali.co.uk/jonspivey/menus/index.html

(mainly) CSS (all versions of FrontPage):
http://www.seoconsultants.com/css/menus/tutorial/


To use in a centred page, place the menu in a relatively positioned div.

<div style="position: relative;">menu goes here, with all the associated
layers0</div>

This will "lock" any layers in place as the browser portal is re-sized.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
Back
Top