I would like to remove all links from my page, and want them to diplay just like the other text.
It is simply html/css page, so i would like to know if there is a way to display all links in that page just like text, withould href.
Not sure if you're wanting to remove the links, or just style them to look like they're not links.
To remove them, you just delete the anchor tags (<a> and </a>)
To style them, add the following to your stylesheet (change the color value to match the text color you're using)
Code:
a {
text-decoration: none; /* gets rid of the undeline */
color: #000000; /* makes them black */
}
no, i want to remove links, to visitors cant click on them, but not to delete a href atributes, but to add some code or script that will disable links on that page, if thats possible.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?