hi everyone, i have some code that resises an image if its bigger than a certain size...
the problem is that although the image is resised, its still pushing the div to the images full size?
heres the code
.dt2 img {
max-width: 300px;
width: expression(document.body.clientWidth > 300? "300px": "auto" );
}
any help appreciated
thanks