I want to my css3 menu how to links be displayed in the same window and don't want to have many popup pages.

Q: Why do my drop down menus open in separate pages? I don't want people to have 10 pages popping up as they go through my page. By the way I love this product and will purchase the license.

A: Select "_self" for "target" parameter in this case.

TARGET controls where the new document will be displayed when the user follows a link.

There are 4 types for target:
* "_blank" - opens the new document in a new window;
* "_parent" - is used in the situation where a frameset file is nested inside another frameset file;
* "_self" - puts the new document in the same window and frame as the current document;
* "_top" - loads the linked document in the topmost frame.

Related