Wednesday, November 24, 2010

How do you change the colour of a specific link on a website?

the links on my blog are black but i wish to change one link to white. blog is html. thanks!How do you change the colour of a specific link on a website?%26lt;style type=%26quot;text/css%26quot;%26gt;

a.white:link, a.white:visited, a.white:hover, a.white:active {

color: #fff;

background: none;

}

%26lt;/style%26gt;



%26lt;a href=%26quot;somelink.html%26quot; class=%26quot;white%26quot;%26gt; Link text %26lt;/a%26gt;How do you change the colour of a specific link on a website?when u put the a href code for the link, before putting the text put



%26lt;text color=%26quot;white%26quot;%26gt; and after the link text %26lt;/text%26gt;How do you change the colour of a specific link on a website?You may try to change it by right clicking on the link then selecting the change color / font color as it appears on the screen. ( this will work if you are creating a website blog (html) format or gif format)How do you change the colour of a specific link on a website?Use CSS to define a stylesheet. Search the net for info on how to use CSS (it's a very powerful tool and therefore takes a while to explain). Using %26lt;text color...%26gt; is not ideal, as you are bound to forget a link or two... and if all the links don't look the same, then your audience will find it hard to know what is a link and what isn't. That's why using a way to standardise your link colours (such as CSS) is a very good idea indeed - and will in theory require less information to be downloaded.How do you change the colour of a specific link on a website?%26lt;text color=%26quot;white%26quot;%26gt; and after the link text %26lt;/text%26gt;