(EE v2.7.2)
I have a responsive layout for my clients site and have the proper css already set up for images that get added to text articles with the RTE.
However when adding images with the RTE the width and height attributes get added like so:
https://ellislab.com/asset/images/team-photo/my_photo.jpgIs there a way to disable this so I get a result like this:
https://ellislab.com/asset/images/team-photo/my_photo.jpgThe css I’m using for the article images looks like this:
.article_img_left {
float: left;
width: 33%;
padding: 0px 20px 5px 0px;
}There has to be a better way than just manually deleting the attributes from the image after adding it right?