MyBB Community Forums

Full Version: Making Image Appear When Hover?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add a image so it appears when you hover over the "Forum" and "Last Post" section. So the background color of the "Forum" and "Last Post" part could be white then when you hover over one a image appears instead.

Anyone know how to do this?
Read about the pseudo-class :hover in CSS and use it in the appropriate classes. Smile
I have tried that and I know CSS quite well when making static websites however I am new to editing forum layouts, I have even tried looking at code on other myBB forums and I cannot get it to work.

EDIT: I added this to the bottom of the style sheet:

.trow1:hover, .trow2:hover {
background-color: #000000;
}

Now every single row will highlight when I hover, however I want it to work with the "Forum" and "Last Post" parts only. Anyone know?
Then you need a specific class for them.
(2010-02-11, 12:10 AM)RateU Wrote: [ -> ]Then you need a specific class for them.

Do you know how?