How am I going to input Click to edit
when mouse hover the image, I'm able to do the hover but I can't insert my text when hover. I have create my work at jsfiddle and I must using the HTML source as what I'm doing especially the div
class else my design it won't work.
This is HTML source
<a href="#changepic" data-toggle="modal" data-backdrop="static">
<div class="round-pic2 thumbnail" style="background-image: url('http://asianwiki.com/images/a/a4/Andy-lau.jpg');">
</div>
</a>
This is CSS style
.round-pic2 {
display: block;
width: 130px;
height: 130px;
margin: 0em auto;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
border-radius: 99em;
-webkit-border-radius: 99em;
-moz-border-radius: 99em;
border: 0px solid gray;
box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}
.round-pic2:hover {
opacity:0.5;
}
DEMO
UPDATE WORKING VERSION