Jack Moore
Jack Moore
Of the warnings, the only one I am personally concerned about fixing is the one you quoted. The rest are styling concerns that I'll leave up to the user and...
Weird. @Vaseltior, I am able to reproduce the problem you are having. I was skeptical that `trapFocus` would have any impact, but setting it to false does allow the close...
The focus is trapped in the iframe, I do not think there is anything that can be done about that. Instead of using an iframe, you could possibly use the...
That sounds reasonable. The 'cbox' class prefix is saved as a variable, but that variable is privately scoped, therefor changing it requires editing the colorbox script. So that option is...
Hi, I opened the link you sent me but did not notice any problems in Firefox (v54 on Mac). I didn't see any content in it either though, so maybe...
Just a suggestion, but have you tried removing the `100vw`? That may inadvertently trigger horizontal overflow because it doesn't subtract the vertical scrollbar width. You can tell Colorbox to be...
Sorry, I don't have a good solution for you. You'd have to edit Colorbox because it just wasn't designed to position like that. It's not a perfect workaround, but you...
I think you should be able to call the remove method, then assign it to your new elements. For example: ``` $.colorbox.remove(); $('.example').colorbox(); ```
@antonp2 Colorbox doesn't have an equivalent feature unfortunately, it requires elements in a group to be in the DOM.
Colorbox will attempt to get the title from the title attribute of the element it was assigned to. I'm assuming you assigned Colorbox to the the img elements, e.g. `$('.colorbox-image').colorbox()`,...