Hello,
I am working on my first CSS webpage. I have been able to customize my links such that they have no underline and spiffy colors:
A {TEXT-DECORATION: none; }
A:link {COLOR: #000000; }
A:visited {COLOR: #000000; }
A:active {COLOR: #000000; }
A:hover {COLOR: #ff9900;}
but I have not been able to find a CSS way to get them to open in a new window. Is there any way to do this?
Thanks for your time.