Hi all, Can someone tell me how to make links invisible? Are those invisible links good or bad for PR? Thanks
No idea if they are good or bad for PR but I know how to make one. Your HTML: <a class="invisible" href="url">TextHere</a> Code (markup): You CSS: a.invisible { display:none; } Code (markup): Hope that helps, BP
I don't think you can click on something with display: none; Visibility: hidden also prevents user from clicking on them. Hidden links can set off bans from sites like Google, but sometimes they're nice for accessability-- you want a link there for people with text-only browsers or screen readers maybe, but you don't want it sitting where users with regular browsers see it. I have a hidden link on my site (http://stommepoes.jobva.nl/guis2.html) for only one purpose: screen readers and text-only browsers force the user to listen/read my entire huge menu before getting to the content of the page. I hid the link by giving it approx. the same colour as the background. If you don't have images on, you don't see the background (blue), so you see the link. Chances are, then, you are using a text browser or a screen reader. I want those people to be able to skip to the content further down in the page-- because if they are moving from page to page to page within my site, they'll always have to go through the menu first (unless they have the handy link to click on). www.molly.com has a link that is hidden until the user mouses over it (at the very top). This would prevent a google ban as all users could see it. But the only people who would care to use it are those with text and aural browsers. They'd otherwise have to go through her whole side-bar first (every single time). Hope this helps.
Thanks guys, I just did more research and it shows that search engines ban those sites. You can also report sites that have hidden links.
Hidden links can also be made like this : <a href="http://www.mylink.com"></a> Code (markup): Link exists on the page, spiders see it but no user visibility at all. I think it's SEO safe though