Capitol Armory ad

n00b HTML question on vlink

The #1 community for Gun Owners in Texas

Member Benefits:

  • Fewer Ads!
  • Discuss all aspects of firearm ownership
  • Discuss anti-gun legislation
  • Buy, sell, and trade in the classified section
  • Chat with Local gun shops, ranges, trainers & other businesses
  • Discover free outdoor shooting areas
  • View up to date on firearm-related events
  • Share photos & video with other members
  • ...and so much more!
  • Dsparil

    Active Member
    Rating - 0%
    0   0   0
    Jul 30, 2009
    295
    1
    Houston, TX
    how do I make a SINGLE link, not an entire <body> configuration, but just a single link remain black no matter if it's been clicked on or not.
    DK Firearms
     

    n5wd

    Member
    Rating - 0%
    0   0   0
    Jul 27, 2011
    79
    1
    Foat Wuth
    how do I make a SINGLE link, not an entire <body> configuration, but just a single link remain black no matter if it's been clicked on or not.

    I don't think you can do that without making it a graphic, instead of an HTML character. Use Photoshop to do the link in black over clear, save it as a GIF. Load the graphic link and then link to the graphic.

    Wayne
     

    riverara

    New Member
    Rating - 0%
    0   0   0
    Jun 26, 2009
    47
    1
    You have to use CSS.

    Code:
    <style type="text/css">
    a.link, a.link:hover, a.link:visited
    {
      color:#000;
    }
    </style>
    <a href="http://www.texasguntalk.com" class="link">Forum</a>

    Then any time you want one particular link to be black, throw in that class="link" in there
     

    nalioth

    Active Member
    Rating - 0%
    0   0   0
    Oct 13, 2008
    866
    21
    Houston Metro
    You have to use CSS.

    Code:
    <style type="text/css">
    a.link, a.link:hover, a.link:visited
    {
      color:#000;
    }
    </style>
    <a href="http://www.texasguntalk.com" class="link">Forum</a>

    Then any time you want one particular link to be black, throw in that class="link" in there

    I think you can do the same style inline... I'd have to look it up to be sure.

    Yes, all CSS can be used inline as well as from the <head> area or external style sheet.

    Same code, inline:
    Code:
    <a href="http://www.texasguntalk.com" class="link" style="a.link, a.link:hover, a.link:visited; color:#000">Forum</a>
     
    Every Day Man
    Tyrant

    Support

    Latest posts

    Forum statistics

    Threads
    116,659
    Messages
    2,972,633
    Members
    35,132
    Latest member
    RafaelQ
    Top Bottom