Hi
Here's the CSS code you need for making images larger:
Code:
#view .pl .col2 .thmb
{
width: 200px;
height: 210px;
}
#view .pl .col2 .thmb img
{
max-width: 200px;
max-height: 200px;
width: expression(this.height < this.width && this.width > 200 ? '200px' :true);
height: expression(this.height > this.width && this.height > 200 ? '200px' :true);
}
I don't see a white border to change...
Eric