Page 212 of 305 FirstFirst ... 112162202210211212213214222262 ... LastLast
Results 2,111 to 2,120 of 3042
  1. #2111
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jdhone View Post
    Thank you so much for your patience! For some reason your first explanation did not sink in. I got it fixed, just as you explained. I was hoping that the Category title would be centered at the top as well... I'll poke around to see if I can figure it out, but if you get this and still want to help, it would be geatly appreciated!

    Thank you.
    You can add this to your css:

    #productListHeading {text-align:center;}

  2. #2112
    Join Date
    Apr 2006
    Posts
    26
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    i am having the country problem in drop down menu when signing up.
    I use cherry skin.
    You choose another country and get error to choose your country first which has already been done.
    Here is the site
    http://stickersuperstore.com.au/
    (Sorry I posted this in another thread also)

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by Djpete View Post
    i am having the country problem in drop down menu when signing up.
    I use cherry skin.
    You choose another country and get error to choose your country first which has already been done.
    Here is the site
    http://stickersuperstore.com.au/
    (Sorry I posted this in another thread also)
    Sorry, this has nothing to do with the template, hopefully someone else will reply to your other post.

  4. #2114
    Join Date
    Aug 2006
    Posts
    133
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    When there are no Specials, a blank page displays...
    Quote Originally Posted by jettrue View Post
    This is a missing feature in zen cart, it doesn't add any default text when there are no products.
    I could not get the message to work that Jade suggested here and elsewhere without returning a blank page when there were specials (ironic, yes!). For now instead of an omnipresent specials link, I decided to go with activating the Specials link in the drop down menu only when specials exist. Here is the solution for the standard zen disappearing specials link for the dropdown:

    OPEN \includes\templates\apple_zen\common\tpl_drop_menu.php

    FIND
    Code:
                    <li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
    REPLACE WITH
    Code:
    <?php
        if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
          $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
          if ($show_this->RecordCount() > 0) {
            echo '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . HEADER_TITLE_SPECIALS . '</a>' . '</li>';
          }
        }
    ?>

  5. #2115
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Idea or Suggestion Re: Apple Zen Support Thread

    Thanks, Cartguin...Re: When there are no Specials, a blank page displays...


    that worked!

  6. #2116
    Join Date
    May 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by Djpete View Post
    i am having the country problem in drop down menu when signing up.
    I use cherry skin.
    You choose another country and get error to choose your country first which has already been done.
    Here is the site
    http://stickersuperstore.com.au/
    (Sorry I posted this in another thread also)
    I had the same problem when using PayPal Website payments Pro and Express Checkout. I uninstalled them and tried Website Payments Standard instead and everything is working fine.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by athena View Post
    Thanks, Cartguin...Re: When there are no Specials, a blank page displays...


    that worked!
    This is fixed in the latest version of the template (though it is a zen cart issue, not template specific), though if you use the search feature of this thread you'll find complete instructions on fixing it. There's one post of mine with two steps, then a few posts later, I list a third step that I had forgotten.

  8. #2118
    Join Date
    May 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    You can add this to your css:

    #productListHeading {text-align:center;}
    Where in the css whould I add this? I added it to the stylesheet.css and it did not do anything. See below.

    Code:
    * html #centerColumnWrapper, * html #centerColumnWrapperb, * html #headerWrapperb, * html #headerWrapperc, * html #dropMenuWrapperc, * html #dropMenuWrapperd, * html #navSupp  {
        background:none!important; /* Hides the transparent shadows from older versions of IE */
    	}
    
    
    #productListHeading {
    	text-align:center;
    	}
    	
    #centerColumnWrapper {
    	background:url(../images/shadowRight.png) repeat-y 100% 0;
    	}
    
    #centerColumnWrapperb {
    	background:url(../images/shadowLeft.png) repeat-y 0 0;
    	}
    	
    #navSupp {
    	background:url(../images/shadowAlpha_bot.png) repeat-x top;
    	}
    I would like the category/subcategory heading to be centered over the category/subcategory listings.
    Last edited by jdhone; 1 Jul 2008 at 09:18 PM.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jdhone View Post
    Where in the css whould I add this? I added it to the stylesheet.css and it did not do anything. See below.

    Code:
    * html #centerColumnWrapper, * html #centerColumnWrapperb, * html #headerWrapperb, * html #headerWrapperc, * html #dropMenuWrapperc, * html #dropMenuWrapperd, * html #navSupp  {
        background:none!important; /* Hides the transparent shadows from older versions of IE */
    	}
    
    
    #productListHeading {
    	text-align:center;
    	}
    	
    #centerColumnWrapper {
    	background:url(../images/shadowRight.png) repeat-y 100% 0;
    	}
    
    #centerColumnWrapperb {
    	background:url(../images/shadowLeft.png) repeat-y 0 0;
    	}
    	
    #navSupp {
    	background:url(../images/shadowAlpha_bot.png) repeat-x top;
    	}
    I would like the category/subcategory heading to be centered over the category/subcategory listings.
    It doesn't matter where you add it.

    It is currently centered in Firefox. To get it to center in IE, try adding this instead:


    Code:
    #productListHeading {
    text-align:center;
    margin:0 auto;
    	}

  10. #2120
    Join Date
    Aug 2006
    Posts
    133
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    ...the latest version of the template...
    An update??? Why you sneaky son of a gun. This will give me incentive to fix WinMerge (and its scroll rendering issues). Thanks!

 

 

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