Home › Forums › CSS › [Solved] texts to only appear on hover? › Reply To: [Solved] texts to only appear on hover?
August 27, 2014 at 6:30 pm
#180890
Participant
.portfolio-item .page-context {
position: absolute;
text-transform: uppercase;
bottom: 15px;
left: 15px;
display: none;
}
.portfolio-item:hover .page-context {
display: block;
}
?