Hi
Would it be possible to have the image inline, aligned left, in the body text of the post?
I have tried this code from the forum, but I’m not sure if I’m doing the right thing, as I can’t get it to work.
Thanks
/* Hide Featured Image on Single Post Page */
.single-post .entry-featured {
display: none;
}
/* Columnize Post with Featured Image */
@media (min-width: 768px) {
body:not(.single-post) .has-post-thumbnail .entry-featured {
float: left;
width: 70%;
box-shadow: none;
border: none;
}
body:not(.single-post) .has-post-thumbnail .entry-wrap {
float: left;
width: 60%;
padding: 0 0 0 40px;
}
body:not(.single-post) .has-post-thumbnail {
overflow: hidden;
background-color: #fff;
padding: 60px;
}