Bug #4856
openCan anyone help me with my problem resizing images?
0%
Description
Hi everyone, so I have no problem resizing 1 image in my application using CSS. I am using a container with a style class and an image with a style class and then using the container as a selector onto the image like this:
.homepage .homepageLogo {
max-width: 100%;
max-height: 100%;
}
.homepage is my container and .homepageLogo is my image and it resizes great on different computer screens. My problem is when I have more than 1 image, it keeps pushing the images down below one another and then it resizes them and I want them to stay where they are. I've been searching google but can't find anything, Can anyone help me please on how to fix this?
Updated by Koen Deforche over 8 years ago
- Status changed from New to Feedback
It sounds like your images are then not inline but block? Are you changing them somehow? If they're inline they should appear one next to the other.