How do I get the image hover effect non-Pro accounts get onto my Pro account?

My images show as thumbnails (that I resized to 64 pixels in css) but I have to click them to see the full size. Anyone know the CSS to get the mouseover/hover effect back?

For your inspiration:

For the :hover rule, you don’t have to do transform. Setting a fixed size also works.

.node-displayed-image:hover { 
    max-width: 100%;
    max-height: 100%;  }

yay! works well enough. thanks for pointing me to the answer.

1 Like