Completely removed the logo and am trying to have different header background for each catagory page (3 cat.) looked at a thread that gave info on how to do don't know if version is the problem but cannot make it work.
Changed stylesheet to this below and also changed tpl_header.php to the below info under the stylesheet code.

Now home page and 1st catagory show header_bg.jpg, catagory 2 & 3 show nothing, any suggestions?

#logoWrapper{

background-image: url(../images/header_bg.jpg);

background-repeat: repeat-x;

background-color: #ffffff;

height:300px;

}

#logoWrapper_19 {
background-image: url(../images/header_bg1.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:300px;
}
#logoWrapper_5 {
background-image: url(../images/header_2.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:300px;
}
#logoWrapper_13 {
background-image: url(../images/header_3.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:300px;
}

<?php
unset($logo_cpath);
$logo_cpath[] = "19";
$logo_cpath[] = "5";
$logo_cpath[] = "13";
/* add as many $logo_cpath[] = ...; as you want */
?>
<div id="logoWrapper<?php if (array_search($_REQUEST['cPath'], $logo_cpath)) { echo '_' . $_REQUEST['cPath']; } ?>">


<div id="logo"><?php //echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>