![]() |
||
|
Learn How:
Roll Over Links
Win.Net www.inetmarketing.com KIPCUG
Option 1 created in FrontPage - can be cut and pasted in <head> section of any page
<style fprolloverstyle>A:hover {color: #FF0000; font-family: Arial;
font-size: 12pt; text-transform: uppercase; font-weight: bold}
</style>
Option 2 Cascading Style Sheet Option
Link color is white - hover will change to gray
Insert in <head> section
<style type="text/css">
<!--
a.effect1:link {color:FFFFFF; text-decoration: none; }
a.effect1:active {color:FFFFFF; text-decoration: none; }
a.effect1:visited {color:FFFFFF; text-decoration: none; }
a.effect1:hover {color:B0B0B0; text-decoration: none; }
a.effect2:link {color:FFFFFF; text-decoration: none; }
a.effect2:active {color:FFFFFF; text-decoration: none; }
a.effect2:visited {color:FFFFFF; text-decoration: none; }
a.effect2:hover {color:B0B0B0; text-decoration: none; }
-->
</style>