how can i do an anchor text and make it stay black?

1 replies
Hi, i was wondering if anyone knows how I can create an anchor text backlink, but I don't want it to change blue, I want it to be black without an underline....

so my question is...... how do i take the underline off, and keep the colour to black instead of it BLUE....

thanks
#anchor #black #make #stay #text
  • Profile picture of the author Shapeless
    Originally Posted by louise0evans View Post

    Hi, i was wondering if anyone knows how I can create an anchor text backlink, but I don't want it to change blue, I want it to be black without an underline....

    so my question is...... how do i take the underline off, and keep the colour to black instead of it BLUE....

    thanks
    HTML Code:
    <a href="www.linker.com" style="color:#000000">AnchorTextHere</a>
    Does a black link... For no undering, give me a second


    Place this in your header <head>between these</head>

    HTML Code:
    <style type="text/css">a {text-decoration: none}</style>
    Then by your link:
    HTML Code:
    <a href="http://www.linker.com" style="text-decoration: none">Anchortext</a>
    Complete Code in your body:
    HTML Code:
    <font color="#000000"><a href="http://www.linker.com" style="text-decoration: none">Anchortext</a></font> --> May Work or
    
    <a href="http://www.linker.com" style="text-decoration: none" style="color:#000000">Anchortext</a> --> May Also Work
    #000000 = Black

    HTML5 Allows for user-friendly coding also so one can use words instead of HEX like this:
    HTML Code:
    <font color="red"></font>
    {{ DiscussionBoard.errors[5847070].message }}

Trending Topics