Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Image Thumbnail Help In WordPress Reply To: CSS Image Thumbnail Help In WordPress

#241644
Atelierbram
Participant

On larger screens, the second image doesn’t clear the content above, which can be fixed with clear: left:

.alignleft {
  /* display: inline; <- this can be removed: floated elements are always block-elements */
  float: left;
  margin-right: 15px;
  clear: left;
}