Okay I narrowed down the problem
Any include file messes up the pop-ups, even a blank file. If it is after the Calendar include.
Code:
<body>
<?php $OL=1; require("../calendar/calendar.php"); ?>
<div class="container2"> <!-- MUST INCLUDE BEFORE TEMPLATE -->
<?php include ("foobar.html"); ?>
<div class="EditArea">
<div class="celebrate"></div>
<div class="CalendarBox">
<span class="Text">Calendar</span>
<?php $CSS=1; require("../calendar/calendar.php"); ?>
<?php require("../calendar/calendar.php"); ?>
</div> <!-- CLOSE CalenderBox -->
Even if Foobar.html is just some comments the pop-ups will not work in Safari or Chrome.
If I comment out the Include it works
Code:
<?php //include ("foobar.html"); ?>
Oh..and Java is script removed.
Please Help....
|