email

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an Access table displaying email address on a page using asp, which
are shown in blue. When hovering over the email address it changes to red,
where is the color set at in this process. If one whated to change the colors.
 
Format, Background to change the link colors but if the link changes color
when you hover over it then it sounds like you have a stylesheet (CSS) on
the page for a: hover. Look in code view for a <STYLE> tag at the top of
the page and change the colors there for links. Ex:

<style type="text/css">
A:link {
COLOR: #003399; TEXT-DECORATION: none
}
A:active {
COLOR: #cc0000; TEXT-DECORATION: underline
}
A:visited {
COLOR: #003399; TEXT-DECORATION: none
}
A:hover {
COLOR: #cc0000; TEXT-DECORATION: none
</style>
 
This would be the line that was causing the porblem but not now.
<style fprolloverstyle>A:hover {color: blue; font-weight: bold}
Thanks for the help
 
Glad you found it.


Bill Winter said:
This would be the line that was causing the porblem but not now.
<style fprolloverstyle>A:hover {color: blue; font-weight: bold}
Thanks for the help
 
Back
Top