Page 7 of 326 FirstFirst ... 567891757107 ... LastLast
Results 61 to 70 of 3251
  1. #61
    Join Date
    Sep 2006
    Posts
    122
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi,

    I was a user of simple_zen and now this new wonderful template. Thanks!

    Im looking to decrease the size of the middle column and expand the left and right columns a little bit. How would I do that? I played around the .css but no success.

    Thanks.

  2. #62
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hello Jettrue,

    How do I insert Cross sell code into tpl_product_info_display.php, and where do I find the code? I have temporarily remove the template until this problem is solved. But I really like the Template.

    My site is "www.touchstonemedia.com'

    Your help is appreicated.

    thanks,

    Isvara dsa.

  3. #63
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    On the cross sell mod, look at the readme, it should give you the code to paste in to that file. Or if there is an example file, merge that with yours.

  4. #64
    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 cyptc View Post
    Hi,

    I was a user of simple_zen and now this new wonderful template. Thanks!

    Im looking to decrease the size of the middle column and expand the left and right columns a little bit. How would I do that? I played around the .css but no success.

    Thanks.
    It'll be a little complicated, but doable. You'll need to also increase the grey sidebox image as well to the width you want. You'll have to open the file in an image editing program, then re-size it and save it.

    First you'll need to change the width of the sideboxes in the admin, under "Configuration", "Layout Settings". Make sure to change both sideboxes in both places.

    Then in the css, this section contains the changes you'll need to make:

    Code:
    .outer {
    	padding-left: 165px; /* Same width as margin-left for the float-wrap div */
    	padding-right: 150px; /* Our right column width */
    	}
    	
    .inner {
    	width: 100%;
    	}
    
    .float-wrap {
    	float: left;
    	width: 97%;
    	margin-left: -165px; /* Same length as .outer padding-left but with negative value */
    	}
    
    #content {
    	float: right;
    	margin-right: -165px; /* Same length as .outer padding-left but with negative value */
    	width: 100%;
    	line-height:1.6;
    	position: relative; /* IE needs this  */
    	}
    
    .contentWrap{
    	padding: 5px 0 5px 5px;
    	}
    	
    #navColumnOne { 
    	float: left;
    	position: relative; /* IE needs this  */
    	}
    	
    #navColumnTwo {
    	float: right; 
    	margin-right: -150px; /* This negative margin-right value is in this example the same as the right column width. */
    	position: relative; /* IE needs this  */
    	}

    You'll change the 150px to the width of your sideboxes. Let's say you choose 170px, then you'll need to also increase all of the 165px by 20px, to 185px.

    I *believe* that's all you'll need to do, let me know how it works out.

  5. #65
    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 isvara99###################### View Post
    Hello Jettrue,

    How do I insert Cross sell code into tpl_product_info_display.php, and where do I find the code? I have temporarily remove the template until this problem is solved. But I really like the Template.

    My site is "www.touchstonemedia.com'

    Your help is appreicated.

    thanks,

    Isvara dsa.
    Yes, the code you need to paste is in your Cross Sell readme.txt.

    If it were me, I would paste it after:
    <!--eof also purchased products module-->

    But you can put it where you'd like. The includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php is a nicely sectioned off file, so its easy to see where things begin and end.

  6. #66
    Join Date
    Aug 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    hi, I'm kinda new to this and everything ( I just installed zen-cart today!) So anyway, I saw this template and I thought it might be easy to install. So I uploaded the includes folder to my webserver to overwrite the old includes folder, then I tried to install the SQL code that the readme said you had to install in order for the template to work, but when I click send I get this error:

    1062 Duplicate entry 'PRODUCT_LISTING_LAYOUT_STYLE' for key 'unq_config_key_zen'
    in:
    [INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows', 'Select the layout style:
    Each product can be listed in its own row (rows option) or products can be listed in multiple columns per row (columns option)', '8', '40', NULL, now(), NULL, 'zen_cfg_select_option(array("rows", "columns"),');]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    So now I'm stuck. Is there anything I'm not doing right? This is my very first time trying to install a template in zen-cart

  7. #67
    Join Date
    Nov 2005
    Location
    Netherlands
    Posts
    53
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Jettrue,

    Thank you very much for your fruity templates.

    Perhaps you can help me with repositioning the comodo seal from the outer right side of the browser to the right side of the 2nd sidebox column. (see the red arrow in the attached image). I would like it to be in sync with the right side if the user changes the size of the browser window. I have tried this with padding-right %

    Thanks,
    Attached Images Attached Images  
    zensational

  8. #68
    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 ispark View Post
    hi, I'm kinda new to this and everything ( I just installed zen-cart today!) So anyway, I saw this template and I thought it might be easy to install. So I uploaded the includes folder to my webserver to overwrite the old includes folder, then I tried to install the SQL code that the readme said you had to install in order for the template to work, but when I click send I get this error:

    1062 Duplicate entry 'PRODUCT_LISTING_LAYOUT_STYLE' for key 'unq_config_key_zen'
    in:
    [INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows', 'Select the layout style:
    Each product can be listed in its own row (rows option) or products can be listed in multiple columns per row (columns option)', '8', '40', NULL, now(), NULL, 'zen_cfg_select_option(array("rows", "columns"),');]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    So now I'm stuck. Is there anything I'm not doing right? This is my very first time trying to install a template in zen-cart
    If it says duplicate listing, perhaps you already installed the column grid layout mod? If you go to "Configuration" "Product Listing", do you see this option:

    Product Listing - Layout Style

  9. #69
    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 Rik View Post
    Jettrue,

    Thank you very much for your fruity templates.

    Perhaps you can help me with repositioning the comodo seal from the outer right side of the browser to the right side of the 2nd sidebox column. (see the red arrow in the attached image). I would like it to be in sync with the right side if the user changes the size of the browser window. I have tried this with padding-right %

    Thanks,
    Hmm, I would need to see a link to your site. Are you styling the css for the comodo seal with padding-right?

  10. #70
    Join Date
    Nov 2005
    Location
    Netherlands
    Posts
    53
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    The site is under construction. I'll send you the url-link in PM. The comodo seal is currently on the outer right side of the browser window. ("standard place")

    Thanks
    zensational

 

 
Page 7 of 326 FirstFirst ... 567891757107 ... 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

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