Does anyone know how to style a fancybox div when trying to open it onload.
window.jQuery(document).ready(function() {
$.fancybox.open('#home-pop');
});
I Need something like this... But i cant figure out how to style the fancybox div when I use the code above.
$("#home-pop").fancybox(
{
fitToView : true,
width : '100%',
height : '100%',
autoSize : false,
closeClick : true,
openEffect : 'none',
closeEffect : 'none',
padding : '0',
margin : '0'
});