From f252150f310cb3b7ffebd98a1b54fab1875e5a3d Mon Sep 17 00:00:00 2001 From: "Philip M. Hofer (Frumph)" Date: Sun, 20 Sep 2009 04:35:30 -0700 Subject: [PATCH] cleanup, aisle 3! Signed-off-by: Philip M. Hofer (Frumph) --- functions/classes.php | 10 ++++++---- options/archivesearchoptions.php | 4 ++-- themepack/tunedout/style.css | 6 +++++- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/functions/classes.php b/functions/classes.php index 054780e..48b136f 100644 --- a/functions/classes.php +++ b/functions/classes.php @@ -27,10 +27,12 @@ function comicpress_body_class($classes = '') { $classes[] = 'user-guest'; } - if (comicpress_is_member()) { - $classes[] = 'sitemember'; - } else { - $classes[] = 'non-sitemember'; + if (function_exists('comicpress_is_member')) { + if (comicpress_is_member()) { + $classes[] = 'sitemember'; + } else { + $classes[] = 'non-sitemember'; + } } if($is_lynx) $classes[] = 'lynx'; diff --git a/options/archivesearchoptions.php b/options/archivesearchoptions.php index 78cd3c8..a114b0d 100644 --- a/options/archivesearchoptions.php +++ b/options/archivesearchoptions.php @@ -36,8 +36,8 @@ diff --git a/themepack/tunedout/style.css b/themepack/tunedout/style.css index 52cdc10..4e01812 100644 --- a/themepack/tunedout/style.css +++ b/themepack/tunedout/style.css @@ -14,10 +14,14 @@ body { } #comic img { - width: 100%; border: solid 1px #000; } +#header { + background: #494e5e; + width: 100%; +} + #header {width: 780px; height: 200px; background: url('header.jpg') top center no-repeat; overflow: hidden;} #header h1 {padding: 0;} #header h1 a {display: block; width: 780px; height: 780px; text-indent: -9999px;}