Zen Cart Logo
Forums / Addon Templates / Cherry Zen Template Support Thread

Cherry Zen Template Support Thread

Views: 844,745

Results 381 to 400 of 3,245
21 Oct 2007, 6:55 AM
#381
ellenspsp avatar

ellenspsp

New Zenner

Join Date:
Oct 2007
Posts:
13
Plugin Contributions:
0

Cherry Zen Template Support Thread

Maby a stupide question but I have upload the cherry ze,
I see it in the layout, but he gif page cant be found

And were can I find ch_categories_tree_generator.php
this
Ellen

21 Oct 2007, 1:39 PM
#382
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

ellenspsp:

Maby a stupide question but I have upload the cherry ze,
I see it in the layout, but he gif page cant be found

And were can I find ch_categories_tree_generator.php
this
Ellen
There are no stupid questions, but you do need to define what "IT" is. What are you looking for?

In includes/classes/

there are files called:

categories_ul_generator.php

and

category_tree.php

21 Oct 2007, 1:56 PM
#383
beth_katherine avatar

beth_katherine

Zen Follower

Join Date:
Feb 2007
Posts:
158
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I don't know what happened but all of a sudden my category navigation links in the center box are HUGE. 132.2 px according to the information from Firefox. How do I fix this?

http://smockingbooks.com/index.php?main_page=index&cPath=47

Beth-Katherine :frusty:

21 Oct 2007, 2:07 PM
#384
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

Beth-katherine:

I don't know what happened but all of a sudden my category navigation links in the center box are HUGE. 132.2 px according to the information from Firefox. How do I fix this?

http://smockingbooks.com/index.php?main_page=index&cPath=47

Beth-Katherine :frusty:

You have this:

.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
font-size:12em;
}

12em is GINORMOUS.... perhaps you meant to put 1.2em?

21 Oct 2007, 3:03 PM
#385
beth_katherine avatar

beth_katherine

Zen Follower

Join Date:
Feb 2007
Posts:
158
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Ha! And they said the Dodo bird was extinct, nope living in my brain.

Thank you so much.

Beth-Katherine

21 Oct 2007, 3:50 PM
#386
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Going back to the message I posted about the search header. Just doing some more changes, what I want is the search to appear in the right nav column (this is done and is ok) and also at the very top in the header bar. When I switch on the search header two new search boxes appear, one at the top on the left and another one also on the left but below the header.

So, I only want a search field in the header bar, can you point me in the right direction please? I have played with the single column status but this doesnt sort it.

Thanks
Pete

21 Oct 2007, 5:18 PM
#387
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

One more quick question...For the center box heading, I want to us an image, would the css be:

#centerBoxHeading {background-image: url(../images/imagehere.gif)}

Would I need to delete anything from the css for this to work?

Thanks
Pete

21 Oct 2007, 7:02 PM
#388
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Ok, I entered this into my css:

#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url(../images/header1.gif)
};

The weird thing is this...that alone has no effect...however when I view the page with firefox and click on "edit css" then and only then does it show. As soon as I close the edit scs box the image disapears???

This is really driving me crazy!
Pete

21 Oct 2007, 10:40 PM
#389
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

mediathing:

Going back to the message I posted about the search header. Just doing some more changes, what I want is the search to appear in the right nav column (this is done and is ok) and also at the very top in the header bar. When I switch on the search header two new search boxes appear, one at the top on the left and another one also on the left but below the header.

So, I only want a search field in the header bar, can you point me in the right direction please? I have played with the single column status but this doesnt sort it.

Thanks
Pete

You want to turn search_header.php OFF for left/right column status, and ONLY on for the single column status. Then for search.php, turn it ON for the right column, and OFF for the single column status.

21 Oct 2007, 10:42 PM
#390
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

mediathing:

Ok, I entered this into my css:

#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url(../images/header1.gif)
};

The weird thing is this...that alone has no effect...however when I view the page with firefox and click on "edit css" then and only then does it show. As soon as I close the edit scs box the image disapears???

This is really driving me crazy!
Pete

Your ; needs to be before the } and perhaps it wants parenthesis.

Try this:
#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url("../images/header1.gif");}

Now, do you want that background image for .rowOdd and for #cartSubTotal?

21 Oct 2007, 11:06 PM
#391
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Thanks, I put the line you suggested into the css:
#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url("../images/header1.gif");}

But with the same results, It doesn't show when viewing the page but when I view the page with the edit css window open in firefox all is ok.

Pete

22 Oct 2007, 12:36 AM
#392
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

mediathing:

Thanks, I put the line you suggested into the css:
#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url("../images/header1.gif");}

But with the same results, It doesn't show when viewing the page but when I view the page with the edit css window open in firefox all is ok.

Pete

Make sure the background color for .centerBoxHeading has been removed.

22 Oct 2007, 10:47 AM
#393
possum avatar

possum

New Zenner

Join Date:
Sep 2007
Posts:
58
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Impossible? Well now I don't feel so bad about not being able to figure out how to do it :D

Thanks jettrue.

Possum.

jettrue:

Also, I think that it is absolutely impossible to give an order number until the order is complete. As far as I know, an order number doesn't exist until the order is complete, so, there's no way to "call" the order number beforehand. I would ask this in the general forum, but I'm pretty sure what you want to do is impossible.

22 Oct 2007, 11:26 AM
#394
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

mediathing:

Thanks, I put the line you suggested into the css:
#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url("../images/header1.gif");}

But with the same results, It doesn't show when viewing the page but when I view the page with the edit css window open in firefox all is ok.

Pete

I got your PM, I don't think you have it uploaded into this folder:

http://funfancydress.com/includes/templates/cherry_zen/images/header1.gif

It says file not found.

(includes/templates/cherry_zen/images/header1.gif)

Check to make sure its in the correct place.

22 Oct 2007, 4:59 PM
#395
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I'm sure I checked that first...obviously not!...all ok now, thanks for your help

Pete

23 Oct 2007, 11:25 AM
#397
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

ellenspsp:

Hi,
I dont get the 3 images in the columms,
http://www.schilderijen.ellenspsp.com/index.php?main_page=index&cPath=15

can you help me, what must I do
I have upload the my sql, file
greetings Ellen

Then you must go in the admin, "Configuration", "Product Listing", and change the Layout Style from rows to COLUMNS.

23 Oct 2007, 3:16 PM
#398
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Cherry Zen Template Support Thread

I have one question. Right under the Picture when you enlarge it, you have were it says larger image. The link is of centered. It wasn't like that before I installed lightbox. Could you point me in the right direction how to fix this.. Thank you

23 Oct 2007, 10:30 PM
#400
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

countrycharm:

I have one question. Right under the Picture when you enlarge it, you have were it says larger image. The link is of centered. It wasn't like that before I installed lightbox. Could you point me in the right direction how to fix this.. Thank you
When you installed lightbox, did you replace includes/templates/apple_zen/templates/tpl_modules_main_product_image.php? If so, you'll need to open up a copy of the original, and merge my changes over to the lightbox file. Or copy over lightbox changes to the cherry zen file. Either way, the two need to be merged.