Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Get rid of the quotation marks

Get rid of the quotation marks

Locked

Views: 2,725

Results 1 to 15 of 15
This thread is locked. New replies are disabled.
25 Nov 2006, 2:48 PM
#1
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Get rid of the quotation marks

https://www.wonderfultoyz.com how do i get those quotation marks removed from both sides of my logo? and also how do i get those red x's removed from my information sidebox?

25 Nov 2006, 3:22 PM
#2
jgamio avatar

jgamio

Zen Follower

Join Date:
Nov 2006
Location:
Caracas
Posts:
114
Plugin Contributions:
0

Re: Get rid of the quotation marks

  1. go to .includes\templates\YOURTEMPLATE\common\tlp_header.php

and look for
”<div id="logoWrapper">
.....

</div>“

delete the " from both

  1. i think you solved because i dont see any x red
25 Nov 2006, 3:28 PM
#3
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

that did not work i deleted both " and its still showing up and the red x is still there on the information sidebox what version of ie are you running

25 Nov 2006, 3:35 PM
#4
jgamio avatar

jgamio

Zen Follower

Join Date:
Nov 2006
Location:
Caracas
Posts:
114
Plugin Contributions:
0

Re: Get rid of the quotation marks

:dontgetit are you sure you change your template file ????

can you show me your file?

tlp_header.php

25 Nov 2006, 3:38 PM
#5
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

<?php /** * Common Template - tpl_header.php * * this file can be copied to /templates/your_template_dir/pagename<br /> * example: to override the privacy page<br /> * make a directory /templates/my_template/privacy<br /> * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br /> * to override the global settings and turn off the footer un-comment the following line:<br /> * <br /> * $flag_disable_header = true;<br /> * * @package templateSystem * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: tpl_header.php 4066 2006-08-06 05:50:06Z ajeh $ */ ?> <?php // Display all header alerts via messageStack: if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) { echo htmlspecialchars(urldecode($_GET['error_message'])); } if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) { echo htmlspecialchars($_GET['info_message']); } else { } ?> <!--bof-header logo and navigation display--> <?php if (!isset($flag_disable_header) || !$flag_disable_header) { ?> <div id="headerWrapper"> <!--bof-navigation display--> <div id="navMainWrapper"> <div id="navMain"> <ul class="back"> <li><?php echo '<a href=' . HTTP_SERVER . DIR_WS_CATALOG . '>'; ?>  <?php echo HEADER_TITLE_CATALOG; ?></a></li> <?php if ($_SESSION['customer_id']) { ?> <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li> <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li> <?php } else { if (STORE_STATUS == '0') { ?> <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li> <?php } } ?> <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?> </ul> </div> <div class="navMainSearch forward"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div> </div> <!--eof-navigation display--> <!--bof-branding display-->

”<div id=logoWrapper>
<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>“

<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
<div id="taglineWrapper">
<?php if (HEADER_SALES_TEXT != '') { ?>
  <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?php } ?> <?php if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) { if ($banner->RecordCount() > 0) { ?>
  <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php } } ?>
</div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?> </div> <!--eof-branding display--> <!--eof-header logo and navigation display--> <!--bof-optional categories tabs navigation display--> <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?> <!--eof-optional categories tabs navigation display--> <!--bof-header ezpage links--> <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?> <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?> <?php } ?> <!--eof-header ezpage links--> </div> <?php } ?>
25 Nov 2006, 3:40 PM
#7
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

How do i stop it from trying to look for an image so it just has the text

25 Nov 2006, 3:43 PM
#8
jgamio avatar

jgamio

Zen Follower

Join Date:
Nov 2006
Location:
Caracas
Posts:
114
Plugin Contributions:
0

Re: Get rid of the quotation marks

ok chech this out you deleted the wrong "

<div id="logoWrapper">

you delete the blue and not the red you should put the blue again and delete the red

25 Nov 2006, 3:45 PM
#9
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

blue? red? what? please explain a little better please

25 Nov 2006, 3:45 PM
#10
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

o i c....srry

25 Nov 2006, 3:48 PM
#11
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

ok cool ty now what about the red x's?

25 Nov 2006, 3:51 PM
#12
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

How can i put my logo in the middle and then put "online adult toys superstore underneath it?

25 Nov 2006, 4:29 PM
#14
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: Get rid of the quotation marks

ok i put it there with the image what about the logo in the middle and the other underneath it?

25 Nov 2006, 5:21 PM
#15
jgamio avatar

jgamio

Zen Follower

Join Date:
Nov 2006
Location:
Caracas
Posts:
114
Plugin Contributions:
0

Re: Get rid of the quotation marks

middle ???

from the haeder the wole page in middle of what ????