So according to this Link
I should be able to hide a div with CSS and appear on hover but for some reason I'm not getting the same hover effect on the image I put it on which happens to be on the top corner of this Link
Any suggestion on why it might now be working?
Here's the CSS I used
.user-image {
  float:none !important;
  right: 0;
  margin-right: 4.5%;
  position: absolute;
  z-index: 100;
}
.user-image img {
  width: 65px !important;
  height: 65px !important;
  margin-top: -15px;
  border: 2px solid white;
  border-radius: 32px;
}
.user-image li {
  list-style: none;
  background-color: white;
  display: none;
  padding: 10px;
  width: 100px;
  margin-left: -35px; 
}
.user-image img:hover + .user-image li {
  display: block;
}
Here's the HTML
<div class="user-image">
<img src="http://chocobento.x10.mx/wp/wp-content/uploads/2015/09/1-300x300.jpg" width="180" height="180" alt="itslino" class="avatar avatar-180 wp-user-avatar wp-user-avatar-180 alignnone photo">
<li> Test </li>
<li> Test 2 </li>
</div>
 
     
     
    