I just need a little bit of BASIC help on 'link' colors??

Discussion in 'HTML & Website Design' started by thatdguy, Jun 13, 2007.

  1. #1
    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!
     
    thatdguy, Jun 13, 2007 IP
  2. LeetPCUser

    LeetPCUser Peon

    Messages:
    711
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    LeetPCUser, Jun 13, 2007 IP
  3. rgchris

    rgchris Peon

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Simplest way...

    <a href = "#" style = "color: yellow; text-decoration: none">About Us</a>
    Code (markup):
    Replace the hashmark with the proper link.
     
    rgchris, Jun 13, 2007 IP
  4. hazeyindahead

    hazeyindahead Peon

    Messages:
    14
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Using CSS will be much better than using the html to change every "a href" link.

    Do you use CSS often?
     
    hazeyindahead, Jun 13, 2007 IP
  5. bacanze

    bacanze Peon

    Messages:
    2,419
    Likes Received:
    127
    Best Answers:
    0
    Trophy Points:
    0
    #5
    a:link, a:visited {text-decoration:none; color:#FFFF00;}
    Code (markup):
     
    bacanze, Jun 13, 2007 IP
  6. leksa

    leksa Active Member

    Messages:
    432
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #6
    every one up there have explain the best solution for this case :D
    Just try it, thatdguy.. ;)
     
    leksa, Jun 13, 2007 IP
  7. dvesh

    dvesh Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7


    I have to agree with this one. CSS would be better not just for the current links but any future links also.
     
    dvesh, Jun 14, 2007 IP