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.

I am creating a Custom Facebook Fan Page using iframes and it's working great in Google Chrome and Mozilla Firefox but not working in Internet Explorer. Is there a quick easy way to work around this issue.

<div id="nav">
  <font id="fnav">
    <center>
      <a href="http://bit.ly/MSC-Home" target="internal">HOME</a> | 
      <a href="http://bit.ly/MSC-Schedule" target="internal">SCHEDULE</a> | 
      <a href="http://bit.ly/MSC-Music" target="internal">MUSIC</a> | 
      <a href="http://bit.ly/MSC-Tickets" target="internal">TICKETS</a>
    </center>
  </font>
</div>

<iframe id="box" src="http://bit.ly/MSC-Home" name="internal">&nbsp;</iframe>

You can check out the working example at http://www.facebook.com/pages/GTD/104839016256119?sk=app_168848466497060

share|improve this question

1 Answer

how about the width and height tags?

<iframe id="box" src="http://bit.ly/MSC-Home" name="internal" width="450" height="650">&nbsp;</iframe>
share|improve this answer
I have the width & height in the "box" id – Collin Mar 14 '11 at 23:50
What do you mean by in the "box" ID? ID is a separate attribute from width and height. Do you have it specified in CSS somewhere? – MattK311 Mar 17 '11 at 21:31

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.