I want to display a checkbox for selection on the right bottom of every image..
How can i do something like this?
Please remember that clicking on image has
If it were me I would try usign jQuery for this.Lets pretend that each image is in each own div and the checkbo has an id of check:
$('div').click(function() { //you select the checkbox and ad the code to do what you want to it ('#check'). });