How do I add text next to the logo on the header. I dont know how to find the file to change
How do I add text next to the logo on the header. I dont know how to find the file to change
link to site please.
in the default download of ZC it would say something like Sales message Goes here & you could replace that with your text just right of logo
ok, lets start by seeing if this exists:
locate file:
/includes/languages/english/CUSTOM_TEMPLATE/header.php
if it exists
find inside:
change to this:Code:define('HEADER_SALES_TEXT', '');
and we go from there.Code:define('HEADER_SALES_TEXT', 'MY NEW TEXT');
Okay I changed the name there but it still does not show up on the header
ok, lets see if it is be called:
open:
/includes/templates/CUSTOM_TEMPLATE/common/tpl_header.php
see if something that looks like this:
<?php
if (HEADER_SALES_TEXT != '') {
?>
<!-- <div id="taglineWrapper"><?php// echo HEADER_SALES_TEXT ;?></div> -->
<?php
}
?>