hide links

liunx

Guest
How can I have a bunch of text links to other pages on my web, but have them be invisible or not clickable?<br />
I can't make them the same color as the background because there are other links i want to be visible.<!--content-->You could put them all inside of a div tag with visibility set to hidden. Or your could give you links a class that sets the color to white. Which would you prefer?<!--content-->ummm, i can't do the white thing,<br />
what is a div tag?<!--content-->(I am suppressing a real smart-aleck remark)<br />
<br />
<style type="text/css"><br />
.stealth {visibility: hidden}<br />
</style><br />
...<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"..." class="stealth">I don't see why you'd want to do this, but you cannot see me or click me</a><!--content-->ok, sorry for not knowing what a div tag is. But now i do. So the next time i see someone else ask about it, i can supress a smart-aleck remark too. If everyone was an expert, you would not be needed.<!--content-->
 
Back
Top