Right, so when i hyper link it comes up on the webpage as ugly, blue writing and a underscore, how do i make it so its just normal text then when its hovered over it goes bold?
+Rep for help!
Ross

Right, so when i hyper link it comes up on the webpage as ugly, blue writing and a underscore, how do i make it so its just normal text then when its hovered over it goes bold?
+Rep for help!
Ross
Here's an example:
#aink { color: black; text-decoration: none; }
#a:hover { color: black; text-decoration: underline; font-weight: bold; }
#a:active { color: black; text-decoration: underline; font-weight: bold; }
To make this work, all your links should look like:
<a href="LINK">LINK NAME HERE</a>
So where would i put that example?
In the style sheet, but with out the '#'s.
done that although its still underlined ;[
a { text-decoration: none; }
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
<html>
<head>
<style>
aink { color: black; text-decoration: none; }
a:hover { color: black; text-decoration: underline; font-weight: bold; }
a:active { color: black; text-decoration: underline; font-weight: bold; }
</style>
</head>
<body>
<a href="http://link.com">Link</a>
</body>
</html>
Edited a bit<html>
<head>
<style type="text/css">
<!--
aink { color: black; text-decoration: none; }
a:hover { color: black; text-decoration: underline; font-weight: bold; }
a:active { color: black; text-decoration: underline; font-weight: bold; }
-->
</style>
</head>
<body>
<a href="http://link.com">Link</a>
</body>
</html>
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Want to hide these adverts? Register an account for free!