Log in

View Full Version : mouse effect


emsplanet
02-10-2009, 08:48 AM
any body got this

MAIN CSS for 8.1 version

a: hover, a: Active
(
background: url (images/misc/linkback.gif) repeat-x;
color: # #CCCCCC;
)


not working in 8.1

any idea about it?

Paul M
02-10-2009, 08:53 AM
No idea what this is about, but its not vb.org site feedback so moved to general discussions for now.

KTBleeding
02-10-2009, 12:29 PM
8.1 of.. what? I have no idea what you're talking about, but that css isn't working cause there's several things done wrong. Here:

a:hover, a:active { background: url (images/misc/linkback.gif) repeat-x; color: #ccc; }


a:hover, a:active, not a: hover, a: Active

{}, not ()

color: #ccc, not color: # #CCCCCC;

You should specify a background color when short handing the css like that too, but that's getting pretty picky.

That's quite a few mistakes for one small chunk of code, I recommend reading into css more, doing more tutorials, etc.