Jack Moore
Jack Moore
Most of what you are describing can be done by editing the CSS. That's what was intended. When I first wrote this plugin, I had the idea that everyone would...
To answer your specific points, there is a minWidth/minHeight, maxWidth/maxHeight for specifying those ranges. The title is absolutely positioned, so just move it in the CSS. You can hide the...
Ugh. You are right, there is no minWidth/minHeight. I forgot.
There isn't an option to disable that, but you could use the onComplete (or cbox_complete event) to remove the onclick value. For example: ``` $('a.example').colorbox({onComplete: function(){ $('.cboxPhoto')[0].onclick = null; }});...
This isn't a duplicate, I've never had anyone request something like this. I want to say I have no interest in adding another layer of complexity for sizing and positioning...
Actually, don't use the width and height if you need it to scale. But you could do something like ``` $('a.example').colorbox({maxWidth:'90%', maxHeight:'90%'}); ``` I'm not sure how to square this...
It partially works for me; the item will open grouped with the other elements that share that rel attribute, but it doesn't allow you to move back to the direct...
Ok, the issue here is that Colorbox currently only groups elements it's been assigned to. The way you are doing it Colorbox is never actually assigned to any of your...
Hi @paazmaya, I couldn't reproduce your issue. Can you provide a link? What browser were you using?
@paazmaya I didn't try to fully inspect your code, but I can see how there would be an error in some execution contexts. Hopefully this update will resolve the issue.