Quote Originally Posted by paigesjewelry View Post
1. Thank you so much for taking the time to help me! Since I did not want a logo at all, I deleted the logo.gif from /includes/templates/cherryzen/images. This gave me the zencart logo. I then went to /includes/templates/template_default/images and deleted the logo.gif there. I still have "Powered by Zen Cart" sitting on the main page (www.paigesjewelry.com).
Do I have to have a logo in order for that "Powered by Zen Cart" to go away?


2. Thanks - that worked it is gone now. :)

3. I was able to make the font larger but it does not "look" centered, even though it says it is centered in the stylesheet. Also, can I change the font of the tagline without changing the font anywhere else on the page? I wanted to make the tagline font Monotype Corsiva.

4. entering the additional text.

Thanks again for your help!
1. If you are sure you will not be using a logo, open up includes/templates/cherry_zen/common/tpl_header.php and remove this:

Code:
<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>
3. Once you remove the logo, open up includes/templates/cherry_zen/css/stylesheet.css and change

Code:
#tagline {
	font-size:1.4em;
	text-align:right;
	padding:25px 8px 35px;
}
to this:
Code:
#tagline {
	font-size:1.4em;
	text-align:center;
	padding:25px 8px 35px;
font-family:Monotype Corsiva;
}
and remove this:
Code:
#taglineWrapper {
	width:75%;
	float:left;
}