cbmrj777
11-10-2007, 04:39 PM
Photoblog in question: http://photoblog.hoguechronicle.com/
I've been playing around setting up our family photoblog and need a little help:
I've validated the page in CSS (and it checks good except opacity errors) and xhtml validates with 2 errors (which I'm not quite sure how to fix :/)
Anyway, on the HOME/Photo pages, I have the Thumbnail Row. I want the hover effect but with the thumbnails darkened by default, going normal when the mouse hovers over them. In my CSS I have:
.thumbnails {
border:1px solid #fff;
padding:3px;
margin:3px;
vertical-align:bottom;
filter:alpha(opacity=25);
-moz-opacity:.25;
opacity:.25;
}
.thumbnails:hover {
border:1px solid #fff;
padding:3px;
margin:3px;
filter:alpha(opacity=100);
-moz-opacity:1;
opacity:1;
}
.current-thumbnail {
border:1px solid white;
margin:0 1px 2px 1px;
filter:alpha(opacity=100);
-moz-opacity:1;
opacity:1;
}
But online (in Firefox) it appears backwards. Would anyone know what might be going on?
I've been playing around setting up our family photoblog and need a little help:
I've validated the page in CSS (and it checks good except opacity errors) and xhtml validates with 2 errors (which I'm not quite sure how to fix :/)
Anyway, on the HOME/Photo pages, I have the Thumbnail Row. I want the hover effect but with the thumbnails darkened by default, going normal when the mouse hovers over them. In my CSS I have:
.thumbnails {
border:1px solid #fff;
padding:3px;
margin:3px;
vertical-align:bottom;
filter:alpha(opacity=25);
-moz-opacity:.25;
opacity:.25;
}
.thumbnails:hover {
border:1px solid #fff;
padding:3px;
margin:3px;
filter:alpha(opacity=100);
-moz-opacity:1;
opacity:1;
}
.current-thumbnail {
border:1px solid white;
margin:0 1px 2px 1px;
filter:alpha(opacity=100);
-moz-opacity:1;
opacity:1;
}
But online (in Firefox) it appears backwards. Would anyone know what might be going on?