Forums

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

Home Forums CSS Help me with this css problem Reply To: Help me with this css problem

#238114
Shikkediel
Participant

I’m assuming you’ll be using jQuery…

.hovered {
bottom: 0;
left: 50;
}
$('img').mouseenter(function() {

  $(this).addClass('hovered');
});