Page 147 of 326 FirstFirst ... 4797137145146147148149157197247 ... LastLast
Results 1,461 to 1,470 of 3251
  1. #1461
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi Jettrue,

    Is there a way to get the search_header.php to appear in the tpl_ezpages_bar_header.php??? Preferably at the left side... :-)

    Thanks.

  2. #1462
    Join Date
    Jun 2007
    Posts
    54
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    [quote=Candylea;562350]Thanks heaps Jade but I still have a little gap, is there another one I need to change like the ez footer is there a gap for this that




    I have worked it out not to worry
    Thanks

  3. #1463
    Join Date
    Jun 2004
    Posts
    184
    Plugin Contributions
    0

    Default headerWrapper or logoWrapper query?

    Hi!

    I am trying to get a full width logo banner inserted - to make it match an existing website.

    You can see, I hope what I am trying to do here - http://www.lemongrassmedia.com/zen01.jpg

    So I uploaded the logo which goes most of the way across and then put a `background image' as a repeating background to fake the logo going across the full width.

    The `faked' part though seems to be `top' aligned against the very top of the header bar.

    Now, I have been playing with

    #headerWrapper {
    background:#ffffff; /* background color behind logo and sales text, white default */
    }
    As it says it controls the background color (and I guess image) behind the logo.

    But I am wondering if I should be playing with `logoWrapper' instead?

    It seems that the headerWrapper is behind the header and because it's taller is actually coming into the logo area when I was assuming it was the other way around.

    Does that make any sense at all??

    Plus - is there a simple way to get rid of the `Home - Login - My Account' Header and maybe move it to a sidebox - or do I have to play with tpl files?

    Thanks
    Ernie

  4. #1464
    Join Date
    Jun 2004
    Posts
    184
    Plugin Contributions
    0

    Default Re: headerWrapper or logoWrapper query?

    Hi Again:

    I played a bit more and edited logoWrapper and it's almost there -

    my logoWrapper is:

    #logoWrapper {
    width: auto;
    background-position: bottom;
    background: url("../images/bg-1.gif") repeat-x;
    vertical-align: bottom;
    }
    I though the vertical-align would align it to the bottom but in the image:

    http://www.lemongrassmedia.com/zen01.jpg

    It's still not right.

    What must I change to make the logo blend seamlessly with the background - they are both the same height - 152px.

    Ernie

  5. #1465
    Join Date
    May 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi,

    I am new to Zen Cart, but what has came to my observation is, if we put 6 in "product reviews per page" then 2 reviews gets rotated. If we put 20 in "product reviews per page" then 8 reviews gets rotated. Right now i have put value as 20 and 8 reviews are getting rotated though there many reviews in my site.

    Have a look at www.googolpower.com/store to see what i mean

  6. #1466
    Join Date
    Nov 2005
    Location
    Germany
    Posts
    115
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I've read and read this section to find the problem I'm having with a gap between the logo and the ezpages header below logo.

    The problem does not occur in firefox, but does occur in ie7.

    I've tried nearly all the solutions I've already found in the forum, but it's just not working for me and we are set to open friday, so I'd like to get this taken care of.

    I have used several of your templates, enjoyed them all, but I'd have to say, this one is by far my favorite of them all.

    Anyway, you can see the page I'm talking about at:

    http://www.willowsembroiderynook.com

    I really would appreciate any help you can give me to get this resolved.

    Site is current 1.38.
    Marian
    http://www.seamstobesew.com
    Tip: Always place your zen-cart version in your messages.

  7. #1467
    Join Date
    May 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Did you already resolve this, because I see no white space above your ezpages and below your banner.
    This has now been resolved.

  8. #1468
    Join Date
    May 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    .listingDescription {text-align:left}

    .listingDescription {text-align:justify}
    What file do I edit to place that code?

  9. #1469
    Join Date
    Nov 2005
    Location
    Germany
    Posts
    115
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Re: cybernet360ltd

    You add the lines to the stylesheet.css file under includes/templates/cherry_zen/css
    Marian
    http://www.seamstobesew.com
    Tip: Always place your zen-cart version in your messages.

  10. #1470
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi Jettrue,

    I would like to have two nav bars (one on top of the other), but each one using a different color scheme. What do I need to do to have each bar use a different color? After that, I want each nav bar to have different links and only have the search header in the bottom bar (navigation display 2)...

    Thanks!

    Code:
     
    <!--bof-navigation display 1-->
          <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></li>
                <?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>
                <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a></li>
                <?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>
                <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a></li>
                <?php } } ?>
                <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
                <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 1-->
     
          <!--bof-navigation display 2-->
          <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></li>
                <?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>
                <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a></li>
                <?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>
                <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a></li>
                <?php } } ?>
                <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
                <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 2-->

 

 

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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR