Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Browser resize problem 1

Status
Not open for further replies.

MrMajik

IS-IT--Management
Apr 2, 2002
267
Here is the link to the webpage I am working on. The webpage uses a top header frame and a lower body frame.

When the website opens everything works as expected. However, as soon as you resize the browser window and then click a choice from the menu the page opens in the top (header) frame. This happens if you resize the browser by grabbing a side or top of the browser window or if you use the minimize/maximize buttons.

I suspect the problem to be in the CoolMenu code but I can't seem to find it.

Any ideas?

Thank you.

MrMajik

Everything should be made as simple as possible, but not simpler
--Albert Einstein


 
It might help to explicitly set target="frmMain" in your base page code. Currently you have it set pointing to _parent.

Other than that, you could look through the coolmenu js file and look for something like targ=="_self" and replace it if it looks like it's pointing there and not just a check- coolmenu seems to do a lot of browser- and size-checking, and it might have a case where it decides to change a target frame to _self if its target is resized or otherwise changed. Or, less appealingly, you might be able to set a target for your links in code.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top