Is it possible to wrap single or multiple images in <div class="entry-content article"> in it's own div? I want to be able to style my images and treat them as a series of images rather than an IMG in separate P's with no way of targeting them as a group.
Basically I want the copy and images to be separate in the content area. I am pretty new to wordpress editing so I am confused on this one. Seems wordpress automatically wraps images and paragraphs in P's.
My goal is to have something like this, note the div wrapping the series of images :
<div class="entry-content article">
<p> Lorem Ipsum </p>
<p> Lorem Ipsum </p>
<div class="images">
<p><img src="#" /></p>
<p><img src="#" /></p>
<p><img src="#" /></p>
</div>
</div>