Re: 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
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
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
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?m...index&cPath=47
Beth-Katherine :frusty:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Beth-katherine
You have this:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
font-size:12em;
}
12em is GINORMOUS.... perhaps you meant to put 1.2em?
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
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
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
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
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
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.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
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?