Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Hello,Is there a way to limit the width (and/or the height) of an image in a list or a viewThanks very much for your answersOlivierLille (FRANCE)
Hey,I've found the clue !I have put this in the CSS :.mainimage1 {max-width: 400px;max-height: 400px;width: expression(this.width > 400 ? "400px" : true);height: expression(this.height > 400 ? "400px" : true);}Of course you can adjust the size !And this in the list (custom):$value = "<a href=\"".$data["View"]."\"><img class=\"mainimage1\" src=\"http://www.blabla.com/blabla/".$data["Logo"]."\" border=0></a>";Hope it could help !OlivierLille (FRANCE)