Gossamer Forum
Quote Reply
restrict image size
Hello everyone,

I am presently using the below CSS to restrict my image size:

img {
border: 0px;
max-width:250px;
width: expression(this.width > 250 ? 250: true);
}
============================================

Is there a way to restrict that to a selected table with the image inside instead of all images on the web page?

Thanks in advance for any help.


Sandra Roussel
Chonsa Group Design - Fresh Start Housing
Quote Reply
Re: [SandraR] restrict image size In reply to
never mind I figured it out -- in css:


.Upload img {
border: 0px;
max-width:150px;
width: expression(this.width > 150 ? 150: true);
}


then class the div: div class="Upload"


Sandra Roussel
Chonsa Group Design - Fresh Start Housing