Click to See Complete Forum and Search --> : hide links


pcs800
02-05-2003, 11:54 AM
How can I have a bunch of text links to other pages on my web, but have them be invisible or not clickable?
I can't make them the same color as the background because there are other links i want to be visible.

pyro
02-05-2003, 11:59 AM
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?

pcs800
02-05-2003, 12:00 PM
ummm, i can't do the white thing,
what is a div tag?

gil davis
02-05-2003, 12:01 PM
(I am suppressing a real smart-aleck remark)

<style type="text/css">
.stealth {visibility: hidden}
</style>
...
<a href="..." class="stealth">I don't see why you'd want to do this, but you cannot see me or click me</a>

pcs800
02-05-2003, 12:05 PM
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.