I have problem with my hover on img in my #picutre div. HTML:
#picture img is more specific than .content_pic:hover so opacity:0.4; will always overwrite opacity:1.0;.
#picture img
.content_pic:hover
opacity:0.4;
opacity:1.0;
Use #picture img:hover instead.
#picture img:hover