Without code, it’s hard to help you, but here are some practical tips:
I suspect your “image wall” has a kind of container with an identifier or class to style it with.
eg:
<body> <div id="maincontainer"> <div id="header"></div> <div id="content"> <div id="imagewall"> <img src"img.jpg">
Arranging the size of all images for your image wall without affecting other images, such as logo, etc., is easy if your code is set up similarly to the above.
#imagewall img { width: 100px; height: 100px; }
But if your images are not completely square, they will be distorted using this method.
fredsbend Oct 16 '13 at 22:32 2013-10-16 22:32
source share