Hello, im trying to make my new arcade site a little prettier. I would like to make all the outputed images to be Resized/Scaled to the same size. If you would like to see an example of what im wanting to change you can see here http://bit.ly/cr9NXR. If anyone knows how to do this let me know! Thanks
You'd add the following css rule to your stylesheet, interchanging the dimensions with your desired height and width. .detail img{ height: 100px; width: 100px; } Code (markup):
Or you could override the width and leave the height blank, so it looks like this. <img src="images/logo.gif" width="100" /> Code (markup):