Home page - selection box

  • Thread starter Thread starter Groundwater101
  • Start date Start date
G

Groundwater101

I am new to FrontPage.. on my home page there is the menu to select hyperlink
to where you want to go.. for some reason there is a small box with the same
info only with "drop down" options sitting right on top of the original menu.
How do I move this? I did not create the website so am not sure what the
intentions were but I feel I do not need both... would prefer to remove the
one underneath since it doesn't offer the drop down.

Thanks so much!!
 
Please post a link to the page so that we can see it. Your description is
lacking detail: for instance, what is the code behind the "box" with
"dropdown options"?

--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 
You will have to check the documentation for the dynamic menu for
instructions on how to position it. The code for this menu should be copied
to every page. This code is:

<script type='text/javascript'>
//HV Menu- by Ger Versluis (http://www.burmees.nl/)
//Submitted to Dynamic Drive (http://www.dynamicdrive.com)
//Visit http://www.dynamicdrive.com for this script and more
function Go(){return}

</script>
<script type='text/javascript' src='exmplmenu_var.js'></script>
<script type='text/javascript' src='menu_com.js'></script>
<noscript>Your browser does not support JAVA script</noscript>


However, since this is an Absolutely Positioned pure JavaScript menu I would
advise removing this. It is does not meet today's accessibility
requirements.

If you choose to retain the dynamic menu, remove the static menu by removing
the left shared border from every page:

With a page open:
Format->Shared Borders
Clear the check box for the Left border
Tick the box "Default for all pages"
Click OK

This will remove the border (and the static menu) from all pages.

You will have to check the documentation for the dynamic menu for
instructions on how to position it. The code for this menu should be copied
to every page.

--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 
Back
Top