Django Admin - Display Image On Hover
I'd like to display a thumbnail in a popover when I hover over text (a camera emoji) in our Django Admin view. The code I have works, but displays the image inline, which disrupts
Solution 1:
That might only be an issue to do with the position property of the image, if it is position: relative
, then it will fix itself among the other elements, you have to set it to position: absolute
and from here you should give it top
and left
, for example: top: 0px; left: 0px;
relative to the parent element which I guess is the <a>
element ... And you should also apply position: relative
to the parent element: which again I think is <a>
or whichever parent element is to the <img>
element
Post a Comment for "Django Admin - Display Image On Hover"