Hi,
I've got a series of cells in my calendar - some are have a pale blue background and some have a white background
<style>
.darkcalcell
{
border-bottom: 1px solid #819BAC;
background-color : D8DEF6;
}
.lightcalcell
{
border-bottom: 1px solid #819BAC;
background-color : white;
}
</style>
Then I have
<td class="darkcalcell">
If I want a cell to turn green when the mouse goes over it how do I go about this? Do I have to set up two more styles - eg lightcalcellon, lightcallcelloff, darkcalcellon and darkcaloff?
Thanks very much
Ed
I've got a series of cells in my calendar - some are have a pale blue background and some have a white background
<style>
.darkcalcell
{
border-bottom: 1px solid #819BAC;
background-color : D8DEF6;
}
.lightcalcell
{
border-bottom: 1px solid #819BAC;
background-color : white;
}
</style>
Then I have
<td class="darkcalcell">
If I want a cell to turn green when the mouse goes over it how do I go about this? Do I have to set up two more styles - eg lightcalcellon, lightcallcelloff, darkcalcellon and darkcaloff?
Thanks very much
Ed