MyBB Community Forums

Full Version: Forum/Thread Hover Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Is it possible via CSS to give the forum and threads in them a light shade highlight when mouseover?

Thanks
Edit : faviouz's response is more precise Smile

for all the links ? try below for experiment . Add it to bottom of global.css

a:hover {background : yellow !important;}
In global.css, find: (or similar)

.trow1 {
	background: #f5f5f5;
}

.trow2 {
	background: #EFEFEF;
}

Add afterwards:

.trow1:hover {
	background: #fff;
}

.trow2:hover {
	background: #fff;
}

Change colors to what you want.
Thanks both of you Smile