Results 1 to 3 of 3

Thread: Email Hyperlink (change color)

  1. #1
    Join Date
    Nov 2008
    Posts
    12
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Email Hyperlink (change color)

    How do I change the color of a hyperlink email when you put your mouse over it. The color that shows up now as normal is the blue underline for hyperlink, but when you put your mouse over or on it, it changes color to orange which is what I would like to change to have it the color of the logo. website can be viewed here:
    http://www.icedownlimo.com/

    thank you so much for your help as always.

  2. #2
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
     <head>
      <title> Link Hovering </title>
    <style type="text/css">
    a { /*defines styles for all anchor elements*/
    color: #4489C9;
    text-decoration:none;
    font-weight:bold;
    }
    
    a:hover { /*defines styles for links once they're hovered over*/
    color:#E78D1F;
    }
    </style>
    
    
     </head>
    
     <body>
      <p>
      This is a bunch of text here... Nothing to see. Just typing random stuff to give an example of a <a href="#">LINK</a> in the middle of other text...
      </p>
     </body>
    </html>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

  3. #3
    Join Date
    Nov 2008
    Posts
    12
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Thumbs up Resolved

    Thank you so so much for your help. It is greatly appreciated

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •