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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Style for target:blank

Status
Not open for further replies.

Christylh8

IS-IT--Management
Jul 14, 2002
25
US
I'm using a style statement that is supposed to make every link on my site open in a new window. This is between my <HEAD></HEAD> statment:

<STYLE type=&quot;text/css&quot;>
<!--
A { text-decoration:none
target:blank }
-->
</STYLE>

Anyone know why it's not working? The links are no longer underlined, but all pages open in parent.

Thanks!

 
Do this instead:

<STYLE type=&quot;text/css&quot;>
<!--
A { text-decoration:none }
-->
</STYLE>
<BASE target=&quot;_blank&quot;>

Rick It's a pleasure to know that I've helped you. If I have,
please click the link below to let me know. :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top