PDA

View Full Version : Disable transparent thumbnails?


acrystalball
07-01-2007, 08:50 PM
Hi,
Got my site up and running, but I would like to disable the transparency effect on the thumbs in the template I'm using -- lightwhitetwo. I'm just learning bit by bit looking at source code, so I haven't figured this one out yet.

Can you point me in the right direction?
Thanks!
Crystal

dhdesign
07-02-2007, 12:39 AM
I took a look at your css file - you need to make the following change to these 2 sections of style.css:

Existing code:
/* .............................. */
/* Thumbrow */
/* .............................. */

#thumbrow {
padding:10px;
text-align:center;
}

#thumbrow .current_thumbnail {
filter:alpha(opacity=99);
opacity:0.99;
padding:5px;
margin:3px;
border:1px solid #ccc;
}

#thumbrow a img {
filter:alpha(opacity=70);
opacity:0.70;
margin:3px;
padding:5px;
border:1px solid #fff;
}

#thumbrow a:hover img, #thumbs a:focus img {
filter:alpha(opacity=99);
opacity:0.99;
padding:5px;
border:1px solid #ddd;
}

/* .............................. */
/* Archive */
/* .............................. */

#browse {
padding-top:20px;
clear:both;
}

#browse .thumbnails {
filter: alpha(opacity=70);
opacity: 0.70;
margin:3px;
padding:5px;
border:1px solid #fff;
}

#browse a:hover img{
filter: alpha(opacity=99);
opacity: 0.99;
padding:5px;
border:1px solid #ddd;
}

Change to:

/* .............................. */
/* Thumbrow */
/* .............................. */

#thumbrow {
padding:10px;
text-align:center;
}

#thumbrow .current_thumbnail {
padding:5px;
margin:3px;
border:1px solid #ccc;
}

#thumbrow a img {
margin:3px;
padding:5px;
border:1px solid #fff;
}

#thumbrow a:hover img, #thumbs a:focus img {
padding:5px;
border:1px solid #ddd;
}

/* .............................. */
/* Archive */
/* .............................. */

#browse {
padding-top:20px;
clear:both;
}

#browse .thumbnails {
margin:3px;
padding:5px;
border:1px solid #fff;
}

#browse a:hover img{
padding:5px;
border:1px solid #ddd;
}

acrystalball
07-02-2007, 04:50 PM
Thanks a million! That opaque mask wasn't working for me visually, I am so grateful you were willing to assist me.

Cheers!
Crystal