Home page - below the image about 2/3 down the page you'll see a link that says Quote Requests. http://64.79.132.174/~capstone/
This opens up http://64.79.132.174/~capstone/full-insurance-programs-and-quote-request/ as a modal
The problem I am having is it is opening it up in percentages... how do I fix this? - if I ad "px" after the width and height it opens it up extremely small.
Below is the code that is on the page the link resides on:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/js/fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a.iframeFancybox1").fancybox({
'width' : '700',
'height' : '600',
'overlayOpacity' : '0.4',
'overlayColor' : '#000',
'hideOnContactClick' : false,
'autoScale' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'type' : 'iframe'
});
});
</script>