css - duplicate social icon on easy way with reverse color -


im making responsive website , top have navigation social icons , want hover each icons color. during editing in photoshop dont know technique put color easy way. problem icon small when comes putting color takes time.i have 5 icons on website there : google , facebook, twitter , pinterest , rss .

see image

you need change icon using css :hover selector.

try this:

html

<a class="icon" href="#"></a> 

css

a{   background-image: 'image.png'   width: 32px; }  a:hover {  background-image: 'hover-image.png' } 

Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

xcode - Swift Playground - Files are not readable -

jboss7.x - JBoss AS 7.3 vs 7.4 and differences -