ID:165889
![]() Oct 19 2006, 10:04 am
|
|
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.
|
![]() Oct 19 2006, 10:10 am
|
|
<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). |
Just type it in, at the top is suggested.
mob/verb/Coloured_Link() or if you are going to use it a lot, just set it up in a variable: var/const/CSStyle={"<style type="text/css"> That should work >_> - GhostAnime |
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.
|
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?
|
http://google.com/ Search visited link html color...
|
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 |
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> |