CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
[Solved] Disable hover effect
goalieman34
Permalink to comment
#
May 2012
I am looking to disable the hover effect on my Petrowest logo that is on the top left hand side of the banner area, while keeping it still linked to the home page. Any help with this would be great.
http://petrowest.squarespace.com/
TheDoc
Permalink to comment
#
May 2012
To remove the box-shadow you can do this:
a #banner:hover {box-shadow: 0 0 0; }
Paulie_D
Permalink to comment
#
May 2012
Target the link and 'unhover' it.
It'll be something like...
#banner a img:hover {
opacity:1.0;
box-shadow:none;
}
goalieman34
Permalink to comment
#
May 2012
Thanks a lot! Worked perfect
Add a Comment
http://petrowest.squarespace.com/
a #banner:hover {box-shadow: 0 0 0; }
It'll be something like...