"alecob" webforumsuser (AT) macromedia (DOT) com wrote:
Quote:
I have used CSS to create links that do not show underlines. Any idea how to make those links have underlines show under them when someone scrolls over them?
Thanks,
AB
Use css
|
If your links are within a container, table or layer, then use something
like this. You can cut this code and paste it directly before the
closing </head> tag of your page code.
<style type="text/css">
..mylinks {
font: 11px verdana, helvetica, sans-serif;
color: #ab1;
background-color: 999;
}
..mylinks a {
color: #ab1;
text-decoration: none;
}
..mylinks a:hover {
color: #fff;
text-decoration: underline;
}
</style>
Then select the appropriate tag selector, which contains your links, in
the bottom left hand corner of the DW design screen, a <table> <td> or
<div>, open the css selector panel and choose mylinks.
For a more indepth tutorial on how to create and control your links go here:
http://www.thepattysite.com/linkstyles3.cfm