Forums

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

Home Forums CSS image hover text help Reply To: image hover text help

#183481
Soren
Participant

If you can access the code add a class to the image maybe, or target the element that wraps it. Something like this

.imageHolder img {
  display: block;
}

because img is an inline element by default, we’re removing the extra space inline elements have.