ID:165889
 
The color of This link is blue.What would I do to change it's color using html?Also,how would I change the color of used,pressed,etc links.
<LINK="######">
You want to change the CSS than.

For the specific one you're looking for, it's located here though I recommand you read the first link (beginning).
In response to Revojake
It didn't work.
In response to GhostAnime
But I want to use it in DM coding.What would I do then?
In response to Metamorphman
Just type it in, at the top is suggested.

mob/verb/Coloured_Link()
src<<browse({"
<style type="text/css">
A:link {color: green; text-decoration: none}
A:visited {color: blue; text-decoration: none}
A:active {color: red; text-decoration: none}
A:hover {color: #FF0000;}
</style>
Hi!"}
)


or if you are going to use it a lot, just set it up in a variable:
var/const/CSStyle={"<style type="text/css">
A:link {color: green; text-decoration: none}
A:visited {color: blue; text-decoration: none}
A:active {color: red; text-decoration: none}
A:hover {color: #FF0000;}
</style>"}


mob/verb/Coloured_Link()
src<<browse("[CSStyle] Hi!")


That should work >_>

- GhostAnime
In response to DivineO'peanut
What I'm trying to do,Is make a picture a link.But when I do so,it brings a blue line around it.I dont like that.So,since the background is black,I want to change the used pressed and visited links' color to black.
In response to GhostAnime
Wait,it still brings a blue lines around pictures I want to link-ify.How would I turn that blue line around it into a black line?
In response to Metamorphman
http://google.com/ Search visited link html color...
In response to Metamorphman
Metamorphman wrote:
Wait,it still brings a blue lines around pictures I want to link-ify.How would I turn that blue line around it into a black line?


Next time please tell us it's a picture link >.> I believe you need to change border.. eg:

A:link { border: solid blue }

As what Rev said, use the almighty Google!

- GhostAnime
In response to GhostAnime
You can also embed the style into the HTML tag itself if you don't want to use a stylesheet.
<a style="color:blue; border:none;" href="somefile.html">Link</a>
In response to Nadrew
Hm, never knew that. *Insert Zelda's item-pickup theme here* I just learned something!

- GhostAnime
In response to GhostAnime
I found an easier way than all of this.How?Google!

<img src = blah blah border = 0>


and voila!