diff options
-rwxr-xr-x | usr/local/www/head.inc | 7 | ||||
-rw-r--r-- | usr/local/www/themes/nervecenter/wizard.css | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/usr/local/www/head.inc b/usr/local/www/head.inc index 5470ebc..df81b3f 100755 --- a/usr/local/www/head.inc +++ b/usr/local/www/head.inc @@ -14,7 +14,12 @@ else <head> <title><?=gentitle($pgtitle);?></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> - <link rel="stylesheet" href="/themes/<?php echo $g['theme']; ?>/all.css" media="all" /> + <?php if (strpos($_SERVER["SCRIPT_FILENAME"], "wizard.php") !== false && + file_exists("{$g['www_path']}/themes/{$g['theme']}/wizard.css")): ?> + <link rel="stylesheet" href="/themes/<?php echo $g['theme']; ?>/wizard.css" media="all" /> + <?php else: ?> + <link rel="stylesheet" href="/themes/<?php echo $g['theme']; ?>/all.css" media="all" /> + <?php endif; ?> <link rel="stylesheet" type="text/css" href="/niftycssprintCode.css" media="print" /> <script type="text/javascript">var theme = "<?php echo $g['theme']; ?>"</script> <script type="text/javascript" src="/themes/<?php echo $g['theme']; ?>/loader.js"></script> diff --git a/usr/local/www/themes/nervecenter/wizard.css b/usr/local/www/themes/nervecenter/wizard.css index 32a7e79..84d2984 100644 --- a/usr/local/www/themes/nervecenter/wizard.css +++ b/usr/local/www/themes/nervecenter/wizard.css @@ -495,7 +495,6 @@ ul#wzdnav a:active { border-bottom: 1px solid #999999; } .formfld { - padding-left: 19px; font-size: small; } .formselect { |