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

Hybrid View

  1. #1
    Join Date
    May 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I have a few issues I am not sure how to fix...

    First, I would like my category/subcategory images and names to repeat/wrap accross the page and be centered instead of being listed in one column to the left...see pic.



    Also, I would like to make some chages to the way my items and descritions appear in the detailed view...see pic.



    (1) How can I delete the thumbnail and name of the category on the page. The category tree is already listed in the header, so I don't want it to show again rightbelow it.

    (2) Is it possible to move the Product Count, "Previous", "Listing", and "Next" Buttons to display between the "Write Review" and "Tell a Friend" Links? If so, how?

    (3) I would like all the desciptive text to be justified to the write of the image, instead of wrapping around it. Another acceptable option would be for all the descriptive text to be justified to the left and below the image. (The first would be preferred though). How can this be done?

    (4) How can I delete the text "This item was added...etc..."

    Any help would be greatly appreciated!!! Thank you to everyone who puts so muc work into these templates and support forums!

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jdhone View Post
    I have a few issues I am not sure how to fix...

    First, I would like my category/subcategory images and names to repeat/wrap accross the page and be centered instead of being listed in one column to the left...see pic.



    Also, I would like to make some chages to the way my items and descritions appear in the detailed view...see pic.



    (1) How can I delete the thumbnail and name of the category on the page. The category tree is already listed in the header, so I don't want it to show again rightbelow it.

    (2) Is it possible to move the Product Count, "Previous", "Listing", and "Next" Buttons to display between the "Write Review" and "Tell a Friend" Links? If so, how?

    (3) I would like all the desciptive text to be justified to the write of the image, instead of wrapping around it. Another acceptable option would be for all the descriptive text to be justified to the left and below the image. (The first would be preferred though). How can this be done?

    (4) How can I delete the text "This item was added...etc..."

    Any help would be greatly appreciated!!! Thank you to everyone who puts so muc work into these templates and support forums!
    Subcategory images issue:

    You changed this:
    Code:
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    	float:left;
    	}
    to this:
    Code:
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    	float:center;
    	}
    A) There's no such thing as float:center;, B) When you have a list of css things like the above, never change all of them, only change the one you actually want changed. SO, if you want the logo to no longer be "float:left", simply remove #logo from the above list, like this:

    Code:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    	float:left;
    	}
    Then the other stuff that NEEDS to float:left, will still float:left.

    1) admin, "configuration", "product listing"

    2) same as #1, change next/prev to bottom

    3) Add to css:
    #productDetailsList {float:right}

    4) "catalog", "product types" edit the product general layout

  3. #3
    Join Date
    May 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    o.k.... so i love your template :)
    but I just installed Image handler 2 and now all the payment modules disappeared. any idea what I need to do to fix this?

    also, I'm having troubles getting more than one image to show up on a product listing.

    thanks for any help ~
    http://phantomchicken.com/chickenstore/

  4. #4
    Join Date
    May 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Subcategory images issue:

    You changed this:
    Code:
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    	float:left;
    	}
    to this:
    Code:
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    	float:center;
    	}
    A) There's no such thing as float:center;, B) When you have a list of css things like the above, never change all of them, only change the one you actually want changed. SO, if you want the logo to no longer be "float:left", simply remove #logo from the above list, like this:

    Code:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    	float:left;
    	}
    Then the other stuff that NEEDS to float:left, will still float:left.

    1) admin, "configuration", "product listing"

    2) same as #1, change next/prev to bottom

    3) Add to css:
    #productDetailsList {float:right}

    4) "catalog", "product types" edit the product general layout
    Okay, I was able to get everything accomplished except for the Category/Sub Category listings. I changed the code as you pointed out, but that seemed to only affect my main logo so I am not sure what it has to do with the layout of the Category and Subcategory images.

    To repeat my request...I would like my Category and Subcategory listings to wrap horrizontally accross the page, just like the "featured, or new product" listings do. Is this possible? If so, how do I accomplish it.

    Thank you very very much for your help! I hope you get paid somehow for all the time you put into this template!

  5. #5
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Idea or Suggestion Re: Apple Zen Support Thread

    Say, I solved it! My applet, as simple a script as it was and better,...but I found a java script equivalent and it works like a charm. No obstruction of the submenu.

  6. #6
    Join Date
    Aug 2004
    Posts
    17
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    did some searches and didn't find an answer, so I'm going to ask here. I just installed Apple zen template following the readme. Once installed, I reset the layout box controller. I don't see any sideboxes. Did I miss anything? I went ahead and turned off the ones I don't want, but I don't see any.

  7. #7
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: Apple Zen Support Thread

    Are the ones you want specified for the right side?

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by ash View Post
    did some searches and didn't find an answer, so I'm going to ask here. I just installed Apple zen template following the readme. Once installed, I reset the layout box controller. I don't see any sideboxes. Did I miss anything? I went ahead and turned off the ones I don't want, but I don't see any.
    Link? If they are on correctly, they will show up. It's the LEFT/RIGHT status that you want turned on.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jdhone View Post
    Okay, I was able to get everything accomplished except for the Category/Sub Category listings. I changed the code as you pointed out, but that seemed to only affect my main logo so I am not sure what it has to do with the layout of the Category and Subcategory images.

    To repeat my request...I would like my Category and Subcategory listings to wrap horrizontally accross the page, just like the "featured, or new product" listings do. Is this possible? If so, how do I accomplish it.

    Thank you very very much for your help! I hope you get paid somehow for all the time you put into this template!
    The advice I gave you affects much more than the logo, it was the correct reply and did relate to the issue. If you posted a link, I could know for sure.

    If you'd like to donate for my efforts, there is info in my readme.txt. It would always be appreciated, it does not happen often at all.

  10. #10
    Join Date
    May 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    The advice I gave you affects much more than the logo, it was the correct reply and did relate to the issue. If you posted a link, I could know for sure.
    Here is a link to my site. http://jhaudiotech.com/shop

    To repeat my request...I would like my Category and Subcategory listings to wrap horrizontally accross the page, just like the "featured, or new product" listings do. Is this possible? If so, how do I accomplish it.

    Also, if you have any suggestions for my site, I would appreciate those as well.

    Again, thank you for all your help!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

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