Page 25 of 326 FirstFirst ... 1523242526273575125 ... LastLast
Results 241 to 250 of 3251
  1. #241
    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 fbords View Post
    Yes, I see the BIG color section. I renamed the old "red" folder, and created my own new "red" folder with the bg images i like. I made sure they were the same size and same name. I uploaded the new "red" folder to the server at:
    includes/templates/cherry_zen/images.

    So i shouldnt have had to change anything in the CSS. The header image, and sidebox images are changed with no problem, just not the main nav buttons or rollovers. See www.chroniccaraudio.com/shop to see what i mean.
    Actually they did change, as those are not the rollovers I created. However, it looks like you need to flip your rollover images, as you put the darker color (which is the hover), on top:

    http://www.chroniccaraudio.com/shop/.../tabrightE.gif

    and in the ones I made the darker color goes on bottom:

    http://www.cherryzen.jadetrue.com/in.../tabrightE.gif

    The rollover and non-rollover are combined into one image, and the css is what causes it to "change" upon roll over. The bottom half of the image should be the same color as your header.gif, and the top half should be your rollover color. So you just need to do a little tweaking of tabRightE_last.gif, labrightE.gif, and tableft.gif actually isn't necessary, I need to just delete it in my next update.

  2. #242
    Join Date
    Sep 2007
    Posts
    25
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I'm new to Zen Cart and am just getting my first one up and running. I ran into a problem where when I tried to use images for attribute selection, if I tried using 2 images per row, they would overlap each other.

    I know now that I posted and asked for help in the wrong area, it should have been here, but I did find some help and got the problem resolved. It was suggested that I post here to let you know what it was. Here is the thread.

    http://www.zen-cart.com/forum/showthread.php?t=75065

  3. #243
    Join Date
    Sep 2007
    Posts
    25
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    A couple of quick, I hope, questions. First, is there a global setting to NOT show the quantity box on the product page? I found a couple of settings that I thought should do it but they don't. The Add Button and "QTY" box still show up. I've found where to turn it off in each individual product pricing page but isn't there a global setting to do it?

    Also, is there a way to move the "Add to Cart" button to the bottom of the product page, after all the attributes and etc?

    Thanks

  4. #244
    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 Freebird View Post
    A couple of quick, I hope, questions. First, is there a global setting to NOT show the quantity box on the product page? I found a couple of settings that I thought should do it but they don't. The Add Button and "QTY" box still show up. I've found where to turn it off in each individual product pricing page but isn't there a global setting to do it?

    Also, is there a way to move the "Add to Cart" button to the bottom of the product page, after all the attributes and etc?

    Thanks
    First question, as far as I know, you have to turn it off for each product, or comment out the section that causes the qty box if you know that NONE of your products will need it. That would be done in includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php

    To move the add to cart, open up the same file, find the add to cart section (its all divided into nice sections, cut it and paste it where you want it!

  5. #245
    Join Date
    Sep 2007
    Posts
    60
    Plugin Contributions
    0

    css problem Re: Cherry Zen Template Support Thread

    Originally Posted by fbords
    I'm looking to customize the bg image in the EZPages header. I'm editing the lines:

    #navEZPagesTop {
    background:url("../images/ezbg.gif") repeat-x;
    text-align: right /* grey background image behind ezpages section */
    }

    in the file: /includes/templates/cherry_zen/css/stylesheet.css but nothing happens.

    Any help would be appreciated.
    Those are the right lines. Could I see a site? What are you trying to change? What are you changing it to?
    the site is www.chroniccaraudio.com/shop. I'm trying to update the gray bar behind the "Chronic Car Audio Home" link
    Thanks for answering my other question it worked great. I just need help with this. If I change the above background:url("..images/ezbg.gif") repeat-x; to anything, there is no change. I even tried changing the line to background:url("..images/foo.gif") repeat-x; which obviously doesnt exist, and it appeared unchanged. I cant seem substitute anything for the default.

  6. #246
    Join Date
    Sep 2007
    Posts
    25
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    First question, as far as I know, you have to turn it off for each product, or comment out the section that causes the qty box if you know that NONE of your products will need it. That would be done in includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php

    To move the add to cart, open up the same file, find the add to cart section (its all divided into nice sections, cut it and paste it where you want it!
    Thank you very much. I did manage to move the "add to cart" button using your instructions. Haven't manage to comment out the line to display the quantity box yet but I'll keep messing with it. Many thanks for your help.

  7. #247
    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 Freebird View Post
    Thank you very much. I did manage to move the "add to cart" button using your instructions. Haven't manage to comment out the line to display the quantity box yet but I'll keep messing with it. Many thanks for your help.
    Here's the section for the qty box commented out:
    Code:
    //   if ($products_qty_box_status == 0 or $products_quantity_order_max== 1) {
                  // hide the quantity box and default to 1
                  $the_button = '<input type="hidden" name="cart_quantity" value="1" />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
               // } else {
                  // show the quantity box
     //   $the_button = PRODUCTS_ORDER_QTY_TEXT . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '<br />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
                //}

  8. #248
    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 fbords View Post
    Thanks for answering my other question it worked great. I just need help with this. If I change the above background:url("..images/ezbg.gif") repeat-x; to anything, there is no change. I even tried changing the line to background:url("..images/foo.gif") repeat-x; which obviously doesnt exist, and it appeared unchanged. I cant seem substitute anything for the default.
    You've got two stylesheets online. Delete the stylesheet_081007.css from the server.

  9. #249
    Join Date
    Sep 2007
    Posts
    60
    Plugin Contributions
    0

    css problem Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    You've got two stylesheets online. Delete the stylesheet_081007.css from the server.
    Interesting. So, it checks for stylesheet*.css? It worked fine, thanks!

  10. #250
    Join Date
    Jul 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi Jettrue,
    Sorry I haven't been online. Computer problems ya know I would like to have the brighter purple for the side boxes. Thank you for your help!
    in-style boutique
    Nicole
    In-style boutique

 

 

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