Dashboard Shift:
http://www.i40exit319weather.com/index.phpI have just installed the latest version of the template files and configured the Color Theme Switcher and seem to have a problem.
In Style Options with wide screen off the display is fine...with the wide screen on the dashboard shifts to the left about 1 inch. This is the only page I have a problem with...I have tried a new unedited version of the dashboard and it shifts to the left.
I have also tried the original version of the Theme Switcher prior to the inclusion in the setting file...I get the same results.
I have posted the main body of the index file below...does anyone have a suggestion??
if (isset($_REQUEST['show']) and strtolower($_REQUEST['show']) == 'settings') {
global $SITE;
print "<!-- settings\n" . htmlentities(print_r($SITE,true)) . " -->\n";
}
//
$useTopWarning = true; // set to true to use only the rss-top-warning script
// set to false to use the rss-advisory script instead
?>
<div id="main-copy">
<?php // insert desired warning box at top of page
if ($useTopWarning) {
@include_once("rss-top-warning.php");
} else {
$includeOnly = true;
$doSummary = true;
print " <div class=\"advisoryBox\"\">\n";
@include("rss-advisory.php");
print " </div>\n";
}
?>
<div class="column-dark">
<div align="center">
<?php include_once("ajax-dashboard.php"); ?>
</div>
</div><!-- end column-dark -->
</div><!-- end main-copy -->
<?php
Thanks, Ronnie
Well I found my problem...seems I removed a <br /> and that cause my little issue...as always...opereator error...
Ronnie