HELP Stefan, Navigation bar works in firefox but not IE

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

Guest

Thanks for your reply to my query: FrontPage 2003 navigation bar works in
firefox but not IE. The URL to the website is theprairiewind.com. Any help
is appreciated.

Thanks again,

Captain
 
Your problem appears that you used HTML Form buttons, instead of standalone image or text
hyperlinks.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
In IE buttons need a javascript onclick event to open a page.
onclick="window.open(href=filename.htm)

Make sure the path to file name is correct.
If in a different folder it would be
onclick="window.open(href=foldername/filename.htm)

or you can always use absolute links
onclick="window.open(href=http://www.webname.com/foldername/filename.htm)

So a complete button would look like this in code view:

<input type="button" value="Why" name="B5"></a></p>
<p align="center"><a href="http://www.theprairiewind.com/why.htm">


--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
 
captain said:
Thanks for your reply to my query: FrontPage 2003 navigation bar works in
firefox but not IE. The URL to the website is theprairiewind.com. Any help
is appreciated.

Thanks again,

Captain

Thank you Thomas and Steve, I seem to up and running.

captain
 
Back
Top