Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create my own skin for facebook and for that I have to take over control over what color does the logo's background change to when hovered. I've been looking for a line of code responsible for that behavior long and hard, but with no luck... Please help me find it

share|improve this question
any feedback on my answer? – skywlkr Jul 13 '12 at 7:58

1 Answer

up vote 2 down vote accepted

simple as that:

#pageLogo a:hover, #pageLogo a:focus, #pageLogo a:active {
    background-color: #4B67A1;
}
share|improve this answer
That's right, thank you! I was only using Chrome's developer console, I shoul've came up with simply looking into css :P – groovy354 Jul 13 '12 at 15:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.