ImageCrop Module: a wild RadioButton appears while using ImageCrop

0
While changing the dimension of the part of the image I want cropped, a radio button appears out of nowhere. The radio-button has display: none; when I look in the source code, it's still visible though.   Anyone else has had this problem? And even better, a solution?            
asked
2 answers
0

Thanks for your reply!

 

I found that when I click on the image, to activate the resizing, the display: none property is not there. I guess that the problem lies in the widget itself. Maybe I can find a way to fix it in the CSS.

 

Anyone else experienced this with the ImageCropper widget?

answered
0

A small fix we came up with:

 

//JCrop fix

.jcrop-holder{

   overflow: hidden;

}

answered