Image width within posts
-
Most of the images on my site are embedded from Flickr, which means that I have to set an image size, which can change based on the screen I’m viewing the site on. I’ve inserted some CSS that means single images will always be at 100% of the width of the post:
.single-content img {
width: 100%;
height: auto;
}
.page img {
width: 100%;
height: auto;
}But there are a number of places where I have 2 or 3 images side-by-side, and in these instances I want the whole lot to be 100% width of the post, rather than each individual image being this width. Is there a way of doing this?
Thanks.
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Image width within posts’ is closed to new replies.