You have logo-like images as both the header background and the "official" logo. You need one or the other, not both. If you want the small logo image, make the header background without the text so the logo can float over it. You may also want to make the logo.gif have a transparent background so it can sit on the header bg without the rectangular outline.
You can get rid of the "Sales Message Goes Here" tagline by redefining it in /includes/languages/english/your_template/header.php:
Code:
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
define('HEADER_SALES_TEXT', 'TagLine Here');
define('HEADER_LOGO_WIDTH', '192px');
define('HEADER_LOGO_HEIGHT', '64px');
define('HEADER_LOGO_IMAGE', 'logo.gif');
Also, you are still using the /classic/ template folders. You should make a set of custom template folders to keep your changes safe. See the tutorials for instructions.