site problems
i am writing up the HTML for my web site and in one of the sections (defensive web browsing) i made a link to a proxy site.
here's the syntax: <li>If you are worried about your IP address being logged and used against you somehow try using an Internet proxy. this will stop sites or people from logging your true address. <a href="http://www.youhide.com" target=_blank>here's a good one</a></li>
Here's the problem where it says "here's a good one" it is underlined i can't seem to figure out why it's underlined.
its underlined because all links are underlined by default so people know its a link.
fortunatley some amazing guy invented CSS and stylesheets.
the underline can be edited using the text-decoration attribute. Set it to "none" for no underline.
and if you want to be baby fed.. add this to the link atributes. style="text-decoration:none;"
I like spoonfeeding people :happy:
here comes the choo-choo train…open wide….
<style type="text/css"> a:link{text-decoration:none;} </style>
but be careful removing visual aids from your site, people need some sort of way of telling where the links are, so make links slightly bolder, or a darker colour, or something
http://w3schools.com/css/default.asp
that work? Should tell you how to make the links red or whatever the heck else you want. Have fun with that