Forums

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

Home Forums CSS [Solved] texts to only appear on hover? Reply To: [Solved] texts to only appear on hover?

#180890
Soren
Participant
.portfolio-item .page-context {
  position: absolute;
  text-transform: uppercase;
  bottom: 15px;
  left: 15px;
  display: none;
}

.portfolio-item:hover .page-context {
  display: block;
}

?