cdxrevvved
03-14-2003, 10:24 PM
Say I have these 2 styles...
td.mainmenu {
font-size: 7pt;
font-family: arial, sans-serif;
background: #ffffff;
color: #0000ff;
text-decoration: none;
}
td.mainmenu2 {
font-size: 7pt;
font-family: arial, sans-serif;
background: #6699cc;
color: #ffffff;
text-decoration: none;
}
And then the following code:
print("<tr><td class='mainmenu'>
<a href='index.php?content=mainmenu'>
Main Menu</a></td></tr>");
What I am trying to do is switch between the styles .. Would this be done with onmouseover and onmouseout? I know by incorporating those into the <TD> declaration I can change one atribute.. but no matter what I do, I cant figure out how to change the styles.... HELP!
ex:
<td onmouseover="this.style.background='green';" onmouseout="this.style.background='#ffffff';" align="center">This cell will turn green</td>
So, hows it done???
Feel free to strip the print(" off of it.. my entire site is database driven using php, and I was just too lazy to strip it myself... :)
And before anyone yells, The search isnt returning anything, although im sure this has been answered before... But Im not finding it.... :(
td.mainmenu {
font-size: 7pt;
font-family: arial, sans-serif;
background: #ffffff;
color: #0000ff;
text-decoration: none;
}
td.mainmenu2 {
font-size: 7pt;
font-family: arial, sans-serif;
background: #6699cc;
color: #ffffff;
text-decoration: none;
}
And then the following code:
print("<tr><td class='mainmenu'>
<a href='index.php?content=mainmenu'>
Main Menu</a></td></tr>");
What I am trying to do is switch between the styles .. Would this be done with onmouseover and onmouseout? I know by incorporating those into the <TD> declaration I can change one atribute.. but no matter what I do, I cant figure out how to change the styles.... HELP!
ex:
<td onmouseover="this.style.background='green';" onmouseout="this.style.background='#ffffff';" align="center">This cell will turn green</td>
So, hows it done???
Feel free to strip the print(" off of it.. my entire site is database driven using php, and I was just too lazy to strip it myself... :)
And before anyone yells, The search isnt returning anything, although im sure this has been answered before... But Im not finding it.... :(