colorbox
colorbox copied to clipboard
Add minWidth configuration option
There is a maxWidth but no minWidth configuration setting.
If you for example have a rather narrow image, the description for that image will overlap with the string "Image 1 of 2".
I tested all the config options available and was not able to set a minWidth.
Yea I figured out myself a minWidth property would help a lot if you're going for Responsive Webdesign
This is a duplicate of #159.
Here is a JS/JQ workaround:
$(document).bind('cbox_complete', function(){ if ($("#colorbox").width() < 350) { $.colorbox.resize({ width: 350 }); } });