Follow these instructions to set your CSS menu links to open in a new window:

1. If you haven't done so already, insert your menu code into your page. (For more information about this process, read How to Use the CSS Menu Designer.)

2. Look for the HTML menu code on your page. It will look like this: 

<ul class="menu-menu"> <li class="first"><a href="page1.html">Menu Item 1</a></li> <li><a href="page2.html">Menu Item 2</a></li> <li><a href="page3.html">Menu Item 3</a></li> <ul>

In this example, we have used generic values (class="menu-menu"page1.htmlMenu Item 1, etc.). The values in your menu may differ.

3. For every link you want to open in a new window, place the following attribute-value pair inside the opening link tag (<a href="page1.html">): target="_blank". This means your code will look like this:

<a href="page1.html" target="_blank">Menu Item 1</a>

That's all there is to it! If you want, you can go ahead and preview your menu using one of the preview options in the program.