Page 14 of 305 FirstFirst ... 412131415162464114 ... LastLast
Results 131 to 140 of 3042
  1. #131
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    The only issue is that your single quote is in the wrong place. It should be directly after: 'id=1&chapter=10
    Oh.. this is fixed now and I get the drop down menu, however everything else is gone.. I just get the "stripes" and the drop down menu on the top, nothing else! Do I need to make another change(s)?? If yes, where??

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by Sunabac View Post
    Oh.. this is fixed now and I get the drop down menu, however everything else is gone.. I just get the "stripes" and the drop down menu on the top, nothing else! Do I need to make another change(s)?? If yes, where??
    Check your syntax again. It sounds like you still don't have that section correct. Did you remove that second single quote? It was in the wrong place.

  3. #133
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Check your syntax again. It sounds like you still don't have that section correct. Did you remove that second single quote? It was in the wrong place.
    I keep looking and looking.. have my glasses on...
    This is what I have in tpl_drop_menu.php

    Code:
    <!-- menu area -->
    
    <div id="dropMenuWrapper">
      <div id="dropMenu">
        <ul class="level1">
          <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>
            <ul class="level2">
              <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW); ?>"><?php echo HEADER_TITLE_NEW_PRODUCTS; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_ALL); ?>"><?php echo HEADER_TITLE_ALL_PRODUCTS; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_ADVANCED_SEARCH); ?>"><?php echo HEADER_TITLE_SEARCH; ?></a></li>
            </ul>
          </li>
          <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_CATEGORIES; ?></a>
            <?php
    
     // load the UL-generator class and produce the menu list dynamically from there
     require_once (DIR_WS_CLASSES . 'categories_ul_generator.php');
     $zen_CategoriesUL = new zen_categories_ul_generator;
     $menulist = $zen_CategoriesUL->buildTree(true);
     $menulist = str_replace('"level4"','"level5"',$menulist);
     $menulist = str_replace('"level3"','"level4"',$menulist);
     $menulist = str_replace('"level2"','"level3"',$menulist);
     $menulist = str_replace('"level1"','"level2"',$menulist);
     $menulist = str_replace('<li class="submenu">','<li class="submenu">',$menulist);
     $menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist);
     echo $menulist;
    ?>
          </li>
          <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_INFORMATION; ?></a>
            <ul class="level2">
              <li><a href="<?php echo zen_href_link(FILENAME_SHIPPING); ?>"><?php echo HEADER_TITLE_SHIPPING_INFO; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_PRIVACY); ?>"><?php echo HEADER_TITLE_PRIVACY_POLICY; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_CONDITIONS); ?>"><?php echo HEADER_TITLE_CONDITIONS_OF_USE; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo HEADER_TITLE_ABOUT_US; ?></a></li>
              <?php if (defined('FILENAME_SITE_MAP')) { ?>
              <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
              <?php } ?>
              <li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
            </ul>
          </li>
           <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_EZPAGES, 'id=1&chapter=10') ?>">Our Company</a>
          <ul class="level2">
          <li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
          <li><a href="<?php echo zen_href_link(FILENAME_EZPAGES,  'id=2&chapter=12') ?>">Our Team</a></li>
          <li><a href="<?php echo zen_href_link(FILENAME_EZPAGES, 'id=3&chapter=20') ?>">Location(s)</a></li>
          </ul>
          </li>
          <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>
            <ul class="level2">
              <?php if ($_SESSION['customer_id']) { ?>
              <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
              <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_NEWSLETTERS, '', 'SSL'); ?>"><?php echo HEADER_TITLE_NEWSLETTERS; ?></a></li>
              <?php } else { ?>
              <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
              <li><a href="<?php echo zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CREATE_ACCOUNT; ?></a></li>
              <?php } ?>
            </ul>
          </li>
          <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
            <?php if ($_SESSION['cart']->total >= MIN_ORDER_AMOUNT) { ?>
            <ul class="level2">
              <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
            </ul>
            <?php }?>
          </li>
        </ul>
      </div>
    </div>
    <div class="clearBoth"></div>

  4. #134
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Please ignore my last post, I got it... my mistake in over writing the main page!!

  5. #135
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Putting the shadow aside for a second.

    Can anyone suggest why; Sometimes in FF the page loads so that the logo is squashes a little bit, sometimes it doesn't, and when I right click the logo (in FF) something odd happens.

    www.fleshmetal.com.au/137
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by ghostcorps View Post
    Putting the shadow aside for a second.

    Can anyone suggest why; Sometimes in FF the page loads so that the logo is squashes a little bit, sometimes it doesn't, and when I right click the logo (in FF) something odd happens.

    www.fleshmetal.com.au/137

    I don't see the squashing issue, but the second issue may be fixed by changing:

    Code:
    #logoWrapperOuter {
    	margin:0 auto;
    	background-image: url(http://www.fleshmetal.com.au/137/includes/templates/apple_zen/images/header_bg.jpg);
    	background-position: center center;
    	width:70em;
    	overflow:auto;
    	}
    to

    Code:
    #logoWrapperOuter {
    	margin:0 auto;
    	background-image: url(http://www.fleshmetal.com.au/137/includes/templates/apple_zen/images/header_bg.jpg);
    	background-position: center center;
    	width:70em;
    	overflow:hidden;
    	}

  7. #137
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Apple Zen Template Support Thread

    Jade/Jet -

    Apple Zen I say. Pretty nifty template you have created and are sharing with the Zen community. Very nice.

    Wondering about the horizontal dropdown menu component(s) in the header of your template. Would this be available in a separate mod/package which could be placed in the header of any other ZC 1.3x shop (based on template_default css template). I created my own basic stripped down template in Zen cart 1.37 (based on template_default) and would like to integrate a similar horizontal drop down menu idea such as yours into my header. Any possibilities in doing that? Thanks.

    Woody

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by Woodymon View Post
    Jade/Jet -

    Apple Zen I say. Pretty nifty template you have created and are sharing with the Zen community. Very nice.

    Wondering about the horizontal dropdown menu component(s) in the header of your template. Would this be available in a separate mod/package which could be placed in the header of any other ZC 1.3x shop (based on template_default css template). I created my own basic stripped down template in Zen cart 1.37 (based on template_default) and would like to integrate a similar horizontal drop down menu idea such as yours into my header. Any possibilities in doing that? Thanks.

    Woody
    Absolutely! I've been meaning to do this, as the old one floating around has a lot of bugs and issues, and it made me lose about 5 years off my life span trying to fix it... so I'd love to spare someone the same struggle. Thanks for reminding me. I can possibly get to that this afternoon, if not... soon!

  9. #139
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    I don't see the squashing issue
    I'll keep looking into it, It may be local issue

    Quote Originally Posted by jettrue View Post
    but the second issue may be fixed by changing:

    #logoWrapperOuter ... etc
    Yep its sorted. Never did know what overflow was for, I'll have to do some googling

    cheers.

    ps. when you view the site can you see the logo clearly (not jagged) AND the shadows? cos on this end the first issue alternates between no shadow and a clear logo, or a squashed logo, with shadows.
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by ghostcorps View Post
    I'll keep looking into it, It may be local issue

    Yep its sorted. Never did know what overflow was for, I'll have to do some googling

    cheers.

    ps. when you view the site can you see the logo clearly (not jagged) AND the shadows? cos on this end the first issue alternates between no shadow and a clear logo, or a squashed logo, with shadows.
    Overflow is for clearing the float without additional markup (without using the <div class="clearBoth"></div>). I was having problems with spacing issues and such across browsers, and decided to use that method for that section. Then I read that you could use overflow:hidden instead of auto, which would get rid of the scroll bars. Here's a page with info about this method:
    http://www.sitepoint.com/blogs/2005/...ing-of-floats/

    Your logo is perfectly clear on my end. Do you have the latest firefox version? When you say the logo has shadows, you mean the shadows that should be to the left and right of the site?

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

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