Currently, I have incorporated my theme's CSS file into my application and it contains the following code:
.status .who img {
float: left;
height: 40px;
margin-right: 10px;
width: 40px;
}
However, I want it to appear like this:
.status .who img {
float: left;
max-width: 100%
margin-right: 10px;
}
I am uncertain if I can achieve this using just CSS. Should I utilize jQuery to eliminate the height and width properties, or is there a way to accomplish this purely with CSS?