MyBBThemes Community

Full Version: Table Rollovers
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I achieve a rollover effect with the tables? I've tried doing it with CSS but nothing happens. Here's the CSS I used:
Code:
.trow1: hover {
background: #edfac6;
}
.trow2: hover {
background: #edfac6;
}
computergeek67 Wrote:How can I achieve a rollover effect with the tables? I've tried doing it with CSS but nothing happens. Here's the CSS I used:
Code:
.trow1: hover {
background: #edfac6;
}
.trow2: hover {
background: #edfac6;
}

Code:
.trow1:hover {
background-color: #edfac6;
}
.trow2:hover {
background-color: #edfac6;
}

There's no space between the class/id and the type(e.g :hover)
Then you should use background-color instead.
BlueDevil Wrote:
Code:
.trow1:hover {
background-color: #edfac6;
}
.trow2:hover {
background-color: #edfac6;
}

There's no space between the class/id and the type(e.g :hover)
Then you should use background-color instead.
Yep. That did it. But now how do I make it so that the whole table gets highlighted?
computergeek67 Wrote:
BlueDevil Wrote:
Code:
.trow1:hover {
background-color: #edfac6;
}
.trow2:hover {
background-color: #edfac6;
}

There's no space between the class/id and the type(e.g :hover)
Then you should use background-color instead.
Yep. That did it. But now how do I make it so that the whole table gets highlighted?
Well.. Since I don't know the code for the tables and such on your fourm/site, I don't know ;)
Reference URL's