I have implemented colorbox to showcase an Iframe of the registration page on my website. Here is how it looks...
https://i.sstatic.net/z1RGK.png
Upon closer inspection, I noticed a white bar at the bottom of the Iframe where the close 'X' button used to be. I have tried eliminating every visible border element using JQuery. Here is the snippet of my code...
$("#cboxTopLeft").hide();
$("#cboxTopRight").hide();
$("#cboxBottomLeft").hide();
$("#cboxBottomRight").hide();
$("#cboxMiddleLeft").hide();
$("#cboxMiddleRight").hide();
$("#cboxTopCenter").hide();
$("#cboxBottomCenter").hide();
$("#cboxClose").remove();
From what I can decipher, this should cover all the elements.