MyBB Community Forums

Full Version: Display issue between two subforums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, not sure if anyone can help, but i've got the same inner code between two posts on two different sub forms displaying differently, for some reason on my 'Claims' forum its not reading the style or script tag i believe

http://thehubrp.com/mybb/showthread.php?tid=16

but on my 'Applications' its working perfectly

http://thehubrp.com/showthread.php?tid=9

Any ideas? (Yes i've munged the code behind to allow a poor man's dohtml tag) 

[dohtml]
<head>
  <meta charset="utf-8">
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
    <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    $( "#tabs).tabs();
  });
    $(function() {
        $( "#tabs-buttons" ).tabs();
               $("div.ui-tabs-panel").css('padding','0px');
    });
  </script>

</head>

<body>

<div id="tabs">
  <ul>
    <li><a href="#tabs-1">Face Claims</a></li>
    <li><a href="#tabs-2">Universe Claims</a></li>
    <li><a href="#tabs-78">Canon List</a></li>
    <li><a href="#tabs-90">Who’s Who</a></li>
  </ul>

  <div id="tabs-1">
<iframe width="100%" height="600px"   frameborder="0" border="0" cellspacing="0" src="https://docs.google.com/document/d/1rCENcpKwdAvrRjt6m9c5W1-E8Loqmq2meDX4-hRmsqI/pub?embedded=true"></iframe>

  </div>

  <div id="tabs-2">
<iframe width="100%" height="600px"  frameborder="0" border="0" cellspacing="0" src="https://docs.google.com/document/d/1bLOAkicHhatU7_nEwqb7H8MaSh60nspNJh4tMZzRKS4/pub?embedded=true"></iframe>

  </div>

  <div id="tabs-78">
<iframe width="100%" height="600px"  frameborder="0" border="0" cellspacing="0" src="https://docs.google.com/document/d/1gvUUVNL-J1rZRSiB4_bx_CotPeYuRSfrcjeBJJQHUPk/pub?embedded=true"></iframe>

 </div>

  <div id="tabs-90">
<iframe width="100%" height="800px"  frameborder="0" border="0" cellspacing="0" src="http://thehubrp.com/mybb/whowho.php"></iframe>

   </div>   



 

</body>
[/dohtml]

never mind i've used a different code that works.