Closed Thread
Results 1 to 2 of 2

Thread: help with links hoover color

  1. #1
    Senior Member DrSobol is an unknown quantity at this point DrSobol's Avatar
    Join Date
    Sep 2002
    Location
    Abu Dhabi
    Posts
    100

    help with links hoover color

    I am using frontpage and I would like to have the menu of my site with links with different normal and hoover colors, but the only place to change this is at the Page Properties section, and t applies the same colors to ALL the page. I need to independently change the colors of some links at the same page.
    Any help is really appreciated.
    Andres Development and Networking
    DivXLand.org

  2. #2
    Junior Member Flextron is an unknown quantity at this point
    Join Date
    Mar 2002
    Location
    The sun, of course ;-)
    Posts
    4
    make it with css:

    <head>
    <style type="text/css">

    a.linkname.link { color: green }
    a.linkname:hover { color: red}

    </style>
    </head>
    <body>
    <a class="linkname" href="http://www.google.com/" title=" It works!"> Link to GoOgLE</a>
    </body>
    </html>

    You can put anything what you want where it says "linkname". You can do this with the notebook or programs like dreamweaver. Learn more about css: http://www.w3c.org

    _______________________________
    Nunca escribo nada que no pueda negar después

Closed Thread

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