I am doing very basic coding in dreamweaver for the company website until we get a real one up… Question. There is a link in there that says ‘About Us’ It has blue text and is underline. I want to change the link text color to yellow and get rid of the underline like the false links below it… any suggestions? www.genesisec.com/index.php thanks!
You are going to have to setup css for that. I could do it quite quickly for you if you want. PM me if you are interested.
Simplest way... <a href = "#" style = "color: yellow; text-decoration: none">About Us</a> Code (markup): Replace the hashmark with the proper link.
Using CSS will be much better than using the html to change every "a href" link. Do you use CSS often?
I have to agree with this one. CSS would be better not just for the current links but any future links also.