Results 1 to 10 of 3244

Hybrid View

  1. #1
    Join Date
    Feb 2007
    Posts
    159
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I'm still lost as to how to move the price from next to the product image to below on the products page just like it is on the new products page.

    and for some reason I lost the vertical lines inbetween the columns of products.

    http://smockingbooks.com/index.php?m...&cPath=158_168

    Beth-Katherine
    almost open but no secure socket layer yet so no orders please

  2. #2
    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 Beth-katherine View Post
    I'm still lost as to how to move the price from next to the product image to below on the products page just like it is on the new products page.

    and for some reason I lost the vertical lines inbetween the columns of products.

    http://smockingbooks.com/index.php?m...&cPath=158_168

    Beth-Katherine
    almost open but no secure socket layer yet so no orders please
    So sorry, I misunderstood you. Upload the original (from my template) includes/templates/cherry_zen/templates/tpl_product_info_display.php.

    For the product listing, if you turn on the product name (in your admin, under "configuration", "Product Listing", that problem will go away, OR if you don't want the product name under the image, add this to your stylesheet:

    .listingPrice {display:block;}

    For the missing horizontal lines... does your includes/templates/cherry_zen/common/tpl_columnar_display.php have 5 lines that look like this:

    Code:
         $r_params = str_replace(" back", "", $r_params);
         $r_params = str_replace("50", "98", $r_params);
    	 $r_params = str_replace("33", "98", $r_params);
    	 $col_width = str_replace("50", "48", $col_width);
         $col_width = str_replace("33", "31", $col_width);

  3. #3
    Join Date
    Mar 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I used 4 products per row on my new products. but the descriptions don't lay out properly. I noticed style="width:25%". I think it should be width:98%
    <td width="25%" align="center" valign="top"><div class="centerBoxContentsNew centeredContent" style="width:25%;">

    Can anyone please help?

    http://coolbuydirect.com/c/index.php?main_page=


    thank you

  4. #4
    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 coolbuys View Post
    I used 4 products per row on my new products. but the descriptions don't lay out properly. I noticed style="width:25%". I think it should be width:98%
    <td width="25%" align="center" valign="top"><div class="centerBoxContentsNew centeredContent" style="width:25%;">

    Can anyone please help?

    http://coolbuydirect.com/c/index.php?main_page=


    thank you
    Hi!

    open up includes/templates/cherry_zen/common/tpl_columnar_display.php and change this chunk:
    Code:
    $r_params = str_replace("50", "98", $r_params);
    $r_params = str_replace("33", "98", $r_params);
    $col_width = str_replace("50", "48", $col_width);
    $col_width = str_replace("33", "31", $col_width);
    to this:

    Code:
    $r_params = str_replace("50", "98", $r_params);
    $r_params = str_replace("33", "98", $r_params);
    $r_params = str_replace("25", "98", $r_params);
    $col_width = str_replace("50", "48", $col_width);
    $col_width = str_replace("33", "31", $col_width);
    $col_width = str_replace("25", "23", $col_width);

  5. #5
    Join Date
    Mar 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Hi!

    open up includes/templates/cherry_zen/common/tpl_columnar_display.php and change this chunk:
    Code:
    $r_params = str_replace("50", "98", $r_params);
    $r_params = str_replace("33", "98", $r_params);
    $col_width = str_replace("50", "48", $col_width);
    $col_width = str_replace("33", "31", $col_width);
    to this:

    Code:
    $r_params = str_replace("50", "98", $r_params);
    $r_params = str_replace("33", "98", $r_params);
    $r_params = str_replace("25", "98", $r_params);
    $col_width = str_replace("50", "48", $col_width);
    $col_width = str_replace("33", "31", $col_width);
    $col_width = str_replace("25", "23", $col_width);

    Thank you very much!!! Jade. It works!!!

  6. #6
    Join Date
    Mar 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi, Jade, One more problem. When I tried to click on subcategory, the page doesn't display properly. Please see the page. http://coolbuydirect.com/c/index.php...ex&cPath=65_90

    Can you help me on this too? Thank you!!

  7. #7
    Join Date
    Aug 2007
    Posts
    11
    Plugin Contributions
    0

    Default Validation Error

    Thanks so much for this contribution, your definitely on the list for donations when I hit it big!

    I'm only getting 1 error when I run it through the w3.org validation test and it is the following on my home page
    1. Error Line 28, Column 349: value of attribute "type" cannot be "search"; must be one of "text", "password", "checkbox", "radio", "submit", "reset", "file", "hidden", "image", "button".

    …cb8eede5c31a9a" /><input type="search" name="keyword" id="searchTop" size="20



    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.
    I believe it's something in the header search bar, but haven't been able to fix it myself (tried unsuccessfully)

    Thanks so much for anyones and everyones help!

  8. #8
    Join Date
    Aug 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Validation Error

    Quote Originally Posted by goodwrench1 View Post
    Thanks so much for this contribution, your definitely on the list for donations when I hit it big!

    I'm only getting 1 error when I run it through the w3.org validation test and it is the following on my home page


    I believe it's something in the header search bar, but haven't been able to fix it myself (tried unsuccessfully)

    Thanks so much for anyones and everyones help!
    BTW I ran http://www.cherryzen.jadetrue.com/ through the HTML validator at w3.org, and it produces the same error if that helps.

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

    Default Re: Validation Error

    Quote Originally Posted by goodwrench1 View Post
    BTW I ran http://www.cherryzen.jadetrue.com/ through the HTML validator at w3.org, and it produces the same error if that helps.
    You can ignore it. In order to get the rounded search bar in Safari, I had to change type to search.

 

 

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