• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

help with links hoover color

DrSobol

New Member
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.
 
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
 
Back
Top