Page 1 of 2 12 LastLast
Results 1 to 10 of 3244

Hybrid View

  1. #1
    Join Date
    Sep 2007
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Can someone help with me a quick question. I'm trying to add a page/link to the header bar between "Home" and "Log In" I'm having a little bit of trouble, can someone show me how do this?

    The website is http://alboperformance.com

  2. #2
    Join Date
    Apr 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi everyone!

    First of all sorry for asking a questions that probably have been asked several times before. I just couldnīt get through this massive thread.
    Second question This poblem is on the other hand only in IE6 and not in firefox or IE7



    So how can i correct this?

    Thanks!
    Add this into your //includes/templates/cherry_zen/css/stylesheet.css:

    Code:
         * html #navColumnTwo {
        margin-right: -150px !important;
        }
    It should solve your problem in IE6

  3. #3
    Join Date
    Dec 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I tried it with no sucess unfortunately

    I see the template example site the same way in IE6 http://www.cherryzen.jadetrue.com/

    all boxes a little bit to the left.

    That site dont have the float problem in IE7/firefox though

  4. #4
    Join Date
    Apr 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by Zeb Macahan View Post
    I tried it with no sucess unfortunately

    I see the template example site the same way in IE6 http://www.cherryzen.jadetrue.com/

    all boxes a little bit to the left.

    That site dont have the float problem in IE7/firefox though
    Oooops! I forgot that I had increased the size of my sideboxes by 20px.
    In the css code -150px should be changed to -170px for the standard 150px sideboxes.

    So add this code into your css stylesheet instead of the other code from my previous post.

    Code:
    * html #navColumnTwo {
        margin-right: -170px !important;
        }
    This will fix it.

    Here's my "work-in-progress" site with the default 150px sideboxes width.
    http://www.swordszilla.com
    Last edited by jkeifer; 3 Dec 2007 at 11:15 PM.

  5. #5
    Join Date
    Dec 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    That did the trick!

    Thanks jkeifer

  6. #6
    Join Date
    Dec 2007
    Location
    Sydney Australia
    Posts
    21
    Plugin Contributions
    0

    red flag Re: Cherry Zen Template Support Thread

    Great template thanks to Jade.

    After updating to latest version zen cart , my search header and left box seems to let anything that is typed in search run off the search area.

    Appreciate it if anyone can tell me how to fix this.

    heres my site www.techaustralia.com.au/shop

    Thanks.

  7. #7
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by CMYK View Post
    Great template thanks to Jade.

    After updating to latest version zen cart , my search header and left box seems to let anything that is typed in search run off the search area.

    Appreciate it if anyone can tell me how to fix this.

    heres my site www.techaustralia.com.au/shop

    Thanks.
    I don't see this in Firefox. Which browser?

  8. #8
    Join Date
    Sep 2007
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Jade any insight on this? Thank you!

    Quote Originally Posted by speeds5 View Post
    Can someone help with me a quick question. I'm trying to add a page/link to the header bar between "Home" and "Log In" I'm having a little bit of trouble, can someone show me how do this?

    The website is http://alboperformance.com

  9. #9
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by speeds5 View Post
    Jade any insight on this? Thank you!
    Open up includes/templates/cherry_zen/common/tpl_header.php and add the link after this:

    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>


    like this:

    <li><a href="link_here.htm">Link Name Here</a></li>

    And that's it! You may need to increase the width of #navMain in the css, depending on how long the word your adding is.

  10. #10
    Join Date
    Sep 2007
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    OK that screwed things up for me, what am I missing?

    This is the error I'm getting...

    "Parse error: parse error, unexpected '?' in /home/alboperf/public_html/includes/templates/cherry_zen/common/tpl_header.php on line 5"
    This is what the file looks like.

    <?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 4813 2006-10-23 02:13:53Z drbyte $ */ ?&gt; <!--bof-header logo and navigation display--><?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?><!-- divs for drop shadow -->
    <DIV id=nw>
    <DIV id=ne>
    <DIV id=se>
    <DIV id=sw>
    <DIV id=n>
    <DIV id=s>
    <DIV id=w>
    <DIV id=e>
    <DIV id=main>
    <TABLE id=workaround>
    <TBODY>
    <TR>
    <TD>
    <DIV id=headerWrapper><!--bof-navigation display-->
    <DIV id=navMainWrapper>
    <DIV id=navMainSearch><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></DIV>
    <DIV id=navMain>
    <UL>
    <LI><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><SPAN><?php echo HEADER_TITLE_CATALOG; ?></SPAN></A><?php if ($_SESSION['customer_id']) { ?>
    <LI><A href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><SPAN><?php echo HEADER_TITLE_LOGOFF; ?></SPAN></A>
    <LI><A href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><SPAN><?php echo HEADER_TITLE_MY_ACCOUNT; ?></SPAN></A><?php
    } else {
    if (STORE_STATUS == '0') {
    ?>
    <LI><A href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><SPAN><?php echo HEADER_TITLE_LOGIN; ?></SPAN></A>
    <LI><A href="link_here.htm">Contact Us</A>
    <LI><A href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><SPAN><?php echo HEADER_TITLE_MY_ACCOUNT; ?></SPAN></A><?php } } ?>
    <LI><A href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><SPAN><?php echo HEADER_TITLE_CART_CONTENTS; ?></SPAN></A>
    <LI><A href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><SPAN class=last><?php echo HEADER_TITLE_CHECKOUT; ?></SPAN></A></LI></UL></DIV></DIV><!--eof-navigation display--><!--bof-branding display-->
    <DIV class=clearfix 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>'; ?&gt;</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() &gt; 0) { ?&gt;
    <DIV class=banners id=bannerTwo><?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'); ?&gt; <!--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'); ?&gt; <?php } ?><!--eof-header ezpage links--></DIV><?php } ?></TD></TR></TBODY>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV>
    <DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV>
    Quote Originally Posted by jettrue View Post
    Open up includes/templates/cherry_zen/common/tpl_header.php and add the link after this:

    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>


    like this:

    <li><a href="link_here.htm">Link Name Here</a></li>

    And that's it! You may need to increase the width of #navMain in the css, depending on how long the word your adding is.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg