I always see that underline effect whenever i create a text with link using anchor. Is there any way to remove it or other code or tag i can use instead? Thks.
I always see that underline effect whenever i create a text with link using anchor. Is there any way to remove it or other code or tag i can use instead? Thks.
you can use CSS to get rid of that line. A sample code would be like this:
a brief explination:Code:<style type="text/css"> a:link {text-decoration: none;} //the original link with no underline a:visited {text-decoration: none;} //the visited link with no underline a:hover {text-decoration: underline;} //mouseover link and an underline appears </style>
a:link is the plain link,
a:visited is a visited link
a:hover is a link when the mouse moves over it
text-decoration is the marking or effect for the link
you can find more details about CSS on this website as well as looking around google for it.
"Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design
Just place the above code in the <head> of every page, or add it to your stylesheet, and you'll have what you need.
Bookmarks