Page 130 of 326 FirstFirst ... 3080120128129130131132140180230 ... LastLast
Results 1,291 to 1,300 of 3251
  1. #1291
    Join Date
    Dec 2007
    Location
    Spokane WA
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    First of all, that "change #navMain to 700px" reply was for a totally different issue than what you are having.

    Your problem is that you changed the width of the body to 1000px. Change it back to width:auto.

    html>body {
    width: 1000px;
    }

    change it, and all will be well.

    The cart issue is not related. If you changed any files related to the shopping cart (even language files) re-upload the originals, you've got something messed up somewhere.
    Thank you so much. It's fixed.
    Yes, I realize that the cart issue has nothing to so with this. Thanks for your time and love your avatar! It's nice to see a personal touch!

  2. #1292
    Join Date
    May 2006
    Location
    Orangeburg, SC
    Posts
    72
    Plugin Contributions
    0

    Default Cherry Zen Template Help

    I have searched all over looking for a fix...Only on my Discount Coupon page does the catagory sidebar (which is listed on the left side) moves towards the right side of page 9towards the right sidebar)...please, please, please help before we go live?!?!?!

    http://www.orlandohelitours.com/stor...iscount_coupon

    Thank you in advance for any assistance...

    BTW...Awesome template!

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

    Default Re: Cherry Zen Template Help

    Quote Originally Posted by jtlswan View Post
    I have searched all over looking for a fix...Only on my Discount Coupon page does the catagory sidebar (which is listed on the left side) moves towards the right side of page 9towards the right sidebar)...please, please, please help before we go live?!?!?!

    http://www.orlandohelitours.com/stor...iscount_coupon

    Thank you in advance for any assistance...

    BTW...Awesome template!
    You have one too many </div>'s. Since this issue only happens on the discount coupon page, it stands to reason that your issue is there. Look where you defined the text for that page, and I'll bet you added a </div> when it wasn't needed.

  4. #1294
    Join Date
    Apr 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Using Zen-Cart 1.3.8 and dutch language set 1.3.7 I created a site on www.zepto-computers.nl. The problem I bump into is that I need a mainnav bar which is higher than default (basically I need two lines) for where it's default saying HOME, My Account, Shopping Cart.
    How and where can I change the width of this as adding width to the stylesheet doesn't make a difference for the height.


    Thanks in advance,

    Wjansen.

  5. #1295
    Join Date
    Nov 2006
    Posts
    57
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi Jade,
    I am trying to optimize the checkout bit of the template to improve sales.
    I wanted to turn off the left and right columns so that people can concentrate more on the payment bit.

    I followed the instructions on page 101 and 102 by you used the css
    #loginBody #navColumnOne, #loginBody #navColumnTwo {display:none;}

    #loginBody .contentWrap {padding:0 15px;}

    #loginBody .outer {padding:0!important;}

    #loginBody .float-wrap {width:100%}
    it works fine on IE6 and Firefox &geko. IE7 makes the content box go small and to the right. I changed the
    Padding: 0!important to Padding 1 important for now. It works on all browsers now although the side boxes show.

    Is there anyway to tackle the problem.
    the website is http://morgan111morgan.com and pages are all the checkout pages.
    Thank you for the nice template.
    Regards
    Onesimpleman

  6. #1296
    Join Date
    Apr 2008
    Location
    Chehalis, Washington, United States
    Posts
    32
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I just want to say I love cherry zen! I am still figuring this all out but I have a working shopping cart. Thanks a bunch.

    One thing that would be great (and maybe there already is an easy way to do this) would be an EASY way to make the sideboxes wider or make the text in them smaller so it will fit before it wraps to a second line.

    Please look at my site - suggestions are truly welcome. (I already know most of the photos aren't too good - I used to have a black background website, so I need to redo the photos) But really, ANY constructive criticism is welcome.

    Thanks again!

    Jeff

    www.jeffreydesign.com

  7. #1297
    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 onesimpleman View Post
    Hi Jade,
    I am trying to optimize the checkout bit of the template to improve sales.
    I wanted to turn off the left and right columns so that people can concentrate more on the payment bit.

    I followed the instructions on page 101 and 102 by you used the css
    #loginBody #navColumnOne, #loginBody #navColumnTwo {display:none;}

    #loginBody .contentWrap {padding:0 15px;}

    #loginBody .outer {padding:0!important;}

    #loginBody .float-wrap {width:100%}
    it works fine on IE6 and Firefox &geko. IE7 makes the content box go small and to the right. I changed the
    Padding: 0!important to Padding 1 important for now. It works on all browsers now although the side boxes show.

    Is there anyway to tackle the problem.
    the website is http://morgan111morgan.com and pages are all the checkout pages.
    Thank you for the nice template.
    Regards
    Onesimpleman
    You found a glitch in my template, THANKS , however, your "solution" was just because of an error in your css, which caused IE to freak out, which caused the sideboxes to be hidden. FYI, in a stylesheet, you can't just change 0 to 1. 1 what? 1 px? 1 em? 1 yard? 1 mile? You have to tell it what the unit of measure is. And anyway it needs to be 0, in all reality.

    BUT to fix your issue, open up includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php

    and change these lines (approx line 137-143):

    Code:
                <!-- end left div -->
                <div class="clearBoth"></div>
              </div>
              <!-- end float-wrap -->
              <?php
    }
    ?>
    to this:

    Code:
                <!-- end left div -->
              <?php
    }
    ?>
    <div class="clearBoth"></div>
              </div>
              <!-- end float-wrap -->
    And once you do that, and change 1 back to 0, all should be well.

  8. #1298
    Join Date
    Apr 2008
    Location
    Chehalis, Washington, United States
    Posts
    32
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jeffreydesign View Post
    I just want to say I love cherry zen! I am still figuring this all out but I have a working shopping cart. Thanks a bunch.

    One thing that would be great (and maybe there already is an easy way to do this) would be an EASY way to make the sideboxes wider or make the text in them smaller so it will fit before it wraps to a second line.

    Please look at my site - suggestions are truly welcome. (I already know most of the photos aren't too good - I used to have a black background website, so I need to redo the photos) But really, ANY constructive criticism is welcome.

    Thanks again!

    Jeff

    www.jeffreydesign.com
    Uhhmmmm I made a mistake somewhere. I was looking around at the php files trying to find where I changed the copyright notice in the footer and I don't know what happened, but now my website says "null" .... it's crashed.

    I wanted to give proper credit to sage and zen in the copyright notice, but I screwed something up. HELP!!

    Jeff

  9. #1299
    Join Date
    Apr 2008
    Location
    Chehalis, Washington, United States
    Posts
    32
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jeffreydesign View Post
    Uhhmmmm I made a mistake somewhere. I was looking around at the php files trying to find where I changed the copyright notice in the footer and I don't know what happened, but now my website says "null" .... it's crashed.

    I wanted to give proper credit to sage and zen in the copyright notice, but I screwed something up. HELP!!

    Jeff
    OK I admit it. I panic. It's all back up again... still not exactly sure what blew out, but I just spooged the template folder back in and all is well (after I changed my logo back again.)

    Jeff

  10. #1300
    Join Date
    Nov 2006
    Posts
    57
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    You found a glitch in my template, THANKS , however, your "solution" was just because of an error in your css, which caused IE to freak out, which caused the sideboxes to be hidden. FYI, in a stylesheet, you can't just change 0 to 1. 1 what? 1 px? 1 em? 1 yard? 1 mile? You have to tell it what the unit of measure is. And anyway it needs to be 0, in all reality.

    BUT to fix your issue, open up includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php

    and change these lines (approx line 137-143):

    Code:
                <!-- end left div -->
                <div class="clearBoth"></div>
              </div>
              <!-- end float-wrap -->
              <?php
    }
    ?>
    to this:

    Code:
                <!-- end left div -->
              <?php
    }
    ?>
    <div class="clearBoth"></div>
              </div>
              <!-- end float-wrap -->
    And once you do that, and change 1 back to 0, all should be well.
    Tried that and changed css back to 0 and it still breaks in IE7.
    Thank you for the help .....

 

 

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