Author |
|
germ Newbie
Joined: 26 December 2003 Location: United States
Online Status: Offline Posts: 6
|
Posted: 09 January 2004 at 11:47am | IP Logged
|
|
|
on list.asp when there are messages, there is a button at the bottom "Delete Selected". When you roll over the link it turns white where you can't see it. What CSS controls this? I need to change it to a blue or something that can be visible.
Thanks
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 09 January 2004 at 1:20pm | IP Logged
|
|
|
This is a.wm_reg:hover style. It also affects colors of "11..20 21..30 31..32" links. To make them blue, you can change this style as shown below:
a.wm_reg:hover
{
color: #0000ff;
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: left;
text-decoration: underline;
}
|
Back to Top |
|
|