| thumbnail size and it did not work
I tried this to change the index thumbnail size and it did not work, I'm I doing something wrong?
You can alter this line in pp-inc.php to be a 1 not .5
Code:
if ( $thumbh && $thumbw && !is_multimedia($bigimage) )
{
$imgh = round( $thumbh / $scaleFactor ) * 1;
$imgw = round( $thumbw / $scaleFactor ) * 1;
$imgsize = "height=\"$imgh\" width=\"$imgw\"";
}
|