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

CSS question

Status
Not open for further replies.

LaPluma

Programmer
Feb 3, 2002
139
DE
Hello

I would be grateful for some assistance on this one: is it possible in CSS to have black text, without it being underlined and without it changing colour once it has been clicked, yet serving as a link to a pop up window that is generated by JavaScript?

Many thanks
 
yes it is! :)

<style>
.myText
{
color : black ;
text-decoration:none;
}
</style>

<a href=&quot;#&quot; onclick=&quot;window.open('sample.html')&quot;><span class=myText>yo</span></a>

I think that works. Gary Haran
 
<STYLE TYPE=&quot;text/css&quot;>
A:link
{
TEXT-DECORATION: none;
color : #000000;
font-family: arial;
font-size: 16pt;
font-weight:bold;
}
A:visited
{
{
TEXT-DECORATION: none;
color : #000000;
font-family: arial;
font-size: 16pt;
font-weight:bold;
}
a:hover
{
TEXT-DECORATION: none;
color : #000000;
font-family: arial;
font-size: 16pt;
font-weight:bold;
}
</STYLE>

You can change the font and size, and if you don't want bold just delete &quot;font-wight:bold;&quot;

Hope this helps!
colorado.gif

&quot;Quest for the Cup - 2002!&quot;
&quot;Onto the 2nd round!&quot;

 
Hello xutopia and SPYDERIX

My utmost thanks to you both! You both responded very rapidly and I can only think that you have a stock library of good code or that Einstein lives!

My first reaction was to paste xutopia's code into my page because it was shorter, but I wasn't sure what the refernce to 'span' was and I couldn't quite get it to work. This is almost certainly my fault.

Than I tried SPYDERIX's code and it works fine.

I owe you both!

Many thanks again and best wishes




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top