Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using Shadowbox (http://www.shadowbox-js.com) to do a modal popup with an external page inside, but i cant get the popup to match the size of the content, it just seems to fill out the screen (with some margin around)

here's my code:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- jQuery Latest from Google -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- MM CSS file -->
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<title>Title</title>
<link rel="stylesheet" type="text/css" href="css/shadowbox.css">
<script type="text/javascript" src="js/shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init();
</script>
</head>

&

<a href="test.html" rel="shadowbox;width:985;height:460">more...</a>

Any ideas?

share|improve this question

1 Answer

You need to change your code just a little bit. From this:

<a href="test.html" rel="shadowbox;width:985;height:460">more...</a>

To this (include the equal-sign after width and height, instead of a colon)

<a href="test.html" rel="shadowbox;width=985;height=460">more...</a>

You can see an example here on the documentation Just search the page for "myswf.swf"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.