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

Hybrid View

  1. #1
    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 Snuggle Bug View Post
    I've searched & searched for the answer to this & cannot find it at all, please help!
    How to I modify the top-level category links in the category sidebox in this template?

    I've tried adding a.category-top, I've tried #categories a.category-top, I've tried just about every suggestion in this thread:
    http://www.zen-cart.com/forum/showthread.php?t=71511
    & none of them have created ANY change (but editing other things in the stylesheet DO work, I'm not editing an unused file). I installed the ch_categories mod that keeps all categories open, but this mod still calls the tpl_categories.php file (which has not been modified), so that should not be causing problems. I am just so frustrated that I haven't been able to figure this out on my own.

    Is there a different class being used on this template that I should be changing? Or something else?
    No, the categories mod you are using no longer uses category-top. View the source of your site after you click on a category... in the source there is no category-top to be found ANYWHERE. You should ask in the thread for that mod if there is one, and you can style that menu in stylesheet_categories_menu.css.
    Last edited by jettrue; 24 Mar 2008 at 10:06 PM.

  2. #2
    Join Date
    Oct 2005
    Location
    Cleveland, OH
    Posts
    22
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    No, the categories mod you are using no longer uses category-top. View the source of your site after you click on a category... in the source there is no category-top to be found ANYWHERE. You should ask in the thread for that mod if there is one, and you can style that menu in stylesheet_categories_menu.css.
    um, it's not the site in my sig, and I have since reactivated the default category section as well (which is not modified) & cannot manage to alter sections of ONLY the category sidebox, either nothing happens or all links change, or center box as well, or all left sideboxes

    It is here:
    http://www.mayanconnection.com/_new
    & as mentioned, I've tried a number of things, I've already looked at the source & tried every class I could see, not just category-top, that's why I was wondering if it's something related to this template?

  3. #3
    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 Snuggle Bug View Post
    um, it's not the site in my sig
    Sorry, my mind reading isn't working today.
    Quote Originally Posted by Snuggle Bug View Post
    It is here:
    http://www.mayanconnection.com/_new
    & as mentioned, I've tried a number of things, I've already looked at the source & tried every class I could see, not just category-top, that's why I was wondering if it's something related to this template?
    since there is a color defined for a:link in this template, you can do this:

    a.category-top:link {color:#000000;font-weight:bold;}

  4. #4
    Join Date
    Oct 2005
    Location
    Cleveland, OH
    Posts
    22
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    since there is a color defined for a:link in this template, you can do this:

    a.category-top:link {color:#000000;font-weight:bold;}
    Causes no change on either category menu

  5. #5
    Join Date
    Oct 2005
    Location
    Cleveland, OH
    Posts
    22
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by Snuggle Bug View Post
    Causes no change on either category menu
    nevermind, finally got it figured out, thx for the help. I was using the right coding, but was adding to the bottom of the stylesheet, & the code just above was missing a }

  6. #6
    Join Date
    Feb 2005
    Location
    New Jersey
    Posts
    646
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    oops! replied on wrong message
    Last edited by KADesign; 28 Mar 2008 at 03:03 AM. Reason: replied on wrong message

  7. #7
    Join Date
    Jan 2006
    Location
    Australia
    Posts
    330
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    reposting problem I am experiencing with the large image on product info pages.

    This problem is to do with the drop shadow on product images and the zen lightbox mod.

    When you are using this template along with zen lightbox, something throws the drop image out. I managed to fix this using some instruction found in this thread.

    Open your //cherry_zen/templates/tpl_modules_main_product_image.php file.

    Around line 35, DELETE this:
    Code:

    if (ZEN_LIGHTBOX_STATUS == 'true') {

    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name) . '">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>\')//--></script>';

    } else {

    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="javascriptopupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>\')//--></script>';

    }


    AND REPLACE IT WITH THIS:

    Code:

    if (ZEN_LIGHTBOX_STATUS == 'true') {

    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name) . '">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</div></a>\')//--></script>';

    } else {

    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="javascriptopupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</div></a>\')//--></script>';

    }

    Around line 41 look for this line:
    <!-- eof Zen Lightbox v1.4 aclarke 2007-09-15 -->

    On the next line insert this code:
    Code:

    <div id="productMainImage" class="centeredContent back">

    Insert this code at the very BOTTOM after the </div> tag:
    Code:

    <p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><br />
    <div id="productMainImage2" class="centeredContent back"><span class="imgLink"><a href="<? zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name); ?>">&nbsp;&nbsp;larger image</a></span></div>

    Now open your //cherry_zen/css/stylesheet.css and insert this into your stylesheet:

    Code:

    #productMainImage2 {
    float:left;
    margin: -5px 0 0 10px !important;
    margin: -5px 0 0 5px;
    }

    The first margin entries (-5px) above will move the text up or down relative to the picture depending on the number you use.
    But as soon as I did this, it fixed the initial problem but created another problem where as on the product info page, when you click on the text link "larger Image" it takes you back to the index page instead of opening up the image.

    Any suggestions on how to fix would be much appreciated!!. link to a product can be found by Clicking Here

    TIA

  8. #8
    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 heavenlynights View Post
    reposting problem I am experiencing with the large image on product info pages.

    This problem is to do with the drop shadow on product images and the zen lightbox mod.

    When you are using this template along with zen lightbox, something throws the drop image out. I managed to fix this using some instruction found in this thread.



    But as soon as I did this, it fixed the initial problem but created another problem where as on the product info page, when you click on the text link "larger Image" it takes you back to the index page instead of opening up the image.

    Any suggestions on how to fix would be much appreciated!!. link to a product can be found by Clicking Here

    TIA
    Since I don't use the lightbox mod, this is hard for me to test. I'll try to take a look in the next few days, but it might take me a bit.

  9. #9
    Join Date
    Jan 2006
    Location
    Australia
    Posts
    330
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Since I don't use the lightbox mod, this is hard for me to test. I'll try to take a look in the next few days, but it might take me a bit.
    Thanks Jade for help and time.

  10. #10
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Have a Drink Re: Cherry Zen Template Support Thread

    I am having exactly the same issue as this post.
    Quote Originally Posted by heavenlynights View Post
    reposting problem I am experiencing with the large image on product info pages.

    This problem is to do with the drop shadow on product images and the zen lightbox mod.

    When you are using this template along with zen lightbox, something throws the drop image out. I managed to fix this using some instruction found in this thread.

    But as soon as I did this, it fixed the initial problem but created another problem where as on the product info page, when you click on the text link "larger Image" it takes you back to the index page instead of opening up the image.

    Any suggestions on how to fix would be much appreciated!!. link to a product can be found by Clicking Here

    TIA
    http://www.zen-cart.com/forum/showpo...postcount=1117
    I have been reading this thread now for 2 hours [march - april - may] and have not found an answer to this post. I looked at the authors site and it appears that a solution was found. Can anyone point me to a solution to this? I may have read tight past the answer and didn't even notice it.

    NEXT - When I installed Lightbox, IH2 popups stopped. I noticed that the .js associated with IH2 popup is not loading automatically anymore. Do I need to add it manually to the html_header file?

    THANKS
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

 

 
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