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

Cherry Zen Template Support Thread

Views: 844,798

Results 3,061 to 3,080 of 3,245
9 Oct 2010, 6:34 PM
#3061
countrycharm avatar

countrycharm

Totally Zenned

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

Cherry Zen Template Support Thread

bkeaton:

I have change my background color from light blue to solid black at the bottom the footer has the links for Copyrights and links how can I change the font colors to a different colors?
This has already been discuss. Read post 30061

10 Oct 2010, 3:40 PM
#3062
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I have another issue after I change the background from light blue to black but when someone register a new account the form feild turns from white to black and you can't read the text while they type in the information. How can I fix the field where it won't turn black?

10 Oct 2010, 5:13 PM
#3063
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

bkeaton:

I have another issue after I change the background from light blue to black but when someone register a new account the form feild turns from white to black and you can't read the text while they type in the information. How can I fix the field where it won't turn black?

I got it working right, just need to do a little bit of experiment

22 Oct 2010, 9:43 AM
#3064
rizla avatar

rizla

Zen Follower

Join Date:
Sep 2010
Posts:
449
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hi, I hope this hasn't been aswered before, I have read many of the posts but not all.

New to Zen and been working on another template (Black-Purple) and then came across Cherry.

I have it installed and colour theamed to my liking but I have two issues.

The first is: The box around the attributes is not wide enough and some of my "text" attributes break out to the right. Also an attribute image (font list) overlaps on the right.

Is there any way of making this attribute box larger or scaleable?

Second is something I have loaded earlier. IE8 when my mouse curser goes over any images (side box and new for this month) the whole page drops down in the browser, also hovering over images makes the page jump up and down slightly.

I know it has to be an add-on as it is stable on my work laptop.

I am currently developing on a local server so cannot give a URL.

Would hate to start over!

22 Oct 2010, 12:57 PM
#3065
jim23866 avatar

jim23866

New Zenner

Join Date:
May 2010
Location:
Virginia, USA
Posts:
4
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hello,
I would like to change my navigational menu of my website. I would like a sprite menu and other sprite graphics. Below I have the links and code from another forum but it is exactly what I would like to do. I can not find where to place the html code for my main page. I know the "names" ie #header and #mainmenu are different or need to be changed. I did do alot of searching this and other Zen cart forum posts. I didn't want to "just"change core files. I know that is a no no. Any help would be greatly appreciated.

My site is https://www.eastcoastcaps.net zencart v1.39b cherry zen

I am looking to make a navigation menu similar to the following:

http://www.coremediadesign.co.uk/website_design_company/about_core_media_design.html

This is the sprite image they use.

http://img819.imageshack.us/img819/8185/menuo.png

CSS
Code:

#header {
	width:100%;
	height: 150px;
	background: black;
	padding:0;
	margin:0;
}
#mainMenu {
	list-style:none;
	overflow:hidden;
	width:980px;
	margin:0 auto;
}

#mainMenu li {
	display:inline;
}

#mainMenu a {
	float:left;
	width:137px;
	padding:16px 0;
	text-align:center;
	font:normal 14px/17px arial,helvetica,sans-serif;
	background:url(images/menuo.png) 0 0 no-repeat;
}

#mainMenu a:active,
#mainMenu a:focus,
#mainMenu a:hover {
	background-position:0 -49px;
}

#mainMenu .current a {
	background-position:0 -98px;
}

HTML
Code:

<div id="header">
<div style="height: 101px"> </div>
<ul id="mainMenu">
	<li class="current"><a href="#">Tab 1</a></li>
	<li><a href="#">Tab 2</a></li>
	<li><a href="#">Tab 3</a></li>
	<li><a href="#">Tab 4</a></li>
	<li><a href="#">Tab 5</a></li>
	<li><a href="#">Tab 6</a></li>
	<li><a href="#">Tab 7</a></li>
</ul>
</div>[PHP][/PHP]

:unsure: I don't know if I posted this right this is my first post ever.

23 Oct 2010, 8:22 AM
#3066
rizla avatar

rizla

Zen Follower

Join Date:
Sep 2010
Posts:
449
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I said:
The first is: The box around the attributes is not wide enough and some of my "text" attributes break out to the right. Also an attribute image (font list) overlaps on the right

That is now my only problem!

26 Oct 2010, 12:13 PM
#3067
jim23866 avatar

jim23866

New Zenner

Join Date:
May 2010
Location:
Virginia, USA
Posts:
4
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

jim23866:

Hello,
I would like to change my navigational menu of my website. I would like a sprite menu and other sprite graphics. Below I have the links and code from another forum but it is exactly what I would like to do. I can not find where to place the html code for my main page. I know the "names" ie #header and #mainmenu are different or need to be changed. I did do alot of searching this and other Zen cart forum posts. I didn't want to "just"change core files. I know that is a no no. Any help would be greatly appreciated.

My site is https://www.eastcoastcaps.net zencart v1.39b cherry zen

I am looking to make a navigation menu similar to the following:

http://www.coremediadesign.co.uk/website_design_company/about_core_media_design.html

This is the sprite image they use.

http://img819.imageshack.us/img819/8185/menuo.png

CSS
Code:

#header {
width:100%;
height: 150px;
background: black;
padding:0;
margin:0;
}
#mainMenu {
list-style:none;
overflow:hidden;
width:980px;
margin:0 auto;
}

#mainMenu li {
display:inline;
}

#mainMenu a {
float:left;
width:137px;
padding:16px 0;
text-align:center;
font:normal 14px/17px arial,helvetica,sans-serif;
background:url(images/menuo.png) 0 0 no-repeat;
}

#mainMenu a:active,
#mainMenu a:focus,
#mainMenu a:hover {
background-position:0 -49px;
}

#mainMenu .current a {
background-position:0 -98px;
}

> HTML
> Code:
> 
> ```html
<div id="header">
<div style="height: 101px"> </div>
<ul id="mainMenu">
	<li class="current"><a href="#">Tab 1</a></li>
	<li><a href="#">Tab 2</a></li>
	<li><a href="#">Tab 3</a></li>
	<li><a href="#">Tab 4</a></li>
	<li><a href="#">Tab 5</a></li>
	<li><a href="#">Tab 6</a></li>
	<li><a href="#">Tab 7</a></li>
</ul>
</div>[PHP][/PHP]

:unsure: I don't know if I posted this right this is my first post ever.

Hello,

I've done a little more research. Since this post http://www.zen-cart.com/forum/showpost.php?p=950457&postcount=3073 I do still have that question unanswered.

I would like to know if I could use the CSS Horizontal Drop Down Menu addon is for v1.3.8 then change the colors for the menu to image sprites. Also move the whole menu to the top like it is currently on my cherry zen v1.39b.

In the addon it states in the readme file:

Add to the includes/templates/YOUR_TEMPLATE/common/tpl_header.php

"add this to your header where you'd like the css menu to appear:

<!--bof-drop down menu display-->
<?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
<!--eof-drop down menu display-->
<div class="clearBoth"></div>
```" 

 I would like to do that BUT I don't know "what" I need to remove and exactly where to place this code so that it appears at the very to like my current navigational menu resides. 
 
 The question from my previous post and this one I know are apples and oranges. I thank you for your time. 

JIM :unsure:
30 Oct 2010, 9:55 AM
#3068
eurorage avatar

eurorage

New Zenner

Join Date:
Oct 2010
Posts:
7
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hey Jettrue.

I use your template and I encountered a little problem with locales.

When I use default english locale, the image FREE SHIPPING in product info page shows up.
When I change the local to another, other language buttons show up (which is ok), but instead of FREE Shipping button it displays FREE SHIPPING text.
I don't need the button, but why it shows FREE SHIPPINg instead of free shipping text transalted to my locale? Where can I find this to setup my own text?
I searched everywhere and couldn't find this.

30 Oct 2010, 2:06 PM
#3069
ruready avatar

ruready

New Zenner

Join Date:
Oct 2010
Posts:
7
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I had this problem and couldn't figure it out. Turns out, when you set the sidebox size in admin you must include the "px" and not just type in the size -> do this 150px -> not 150.

31 Oct 2010, 6:53 AM
#3070
sklos avatar

sklos

New Zenner

Join Date:
Oct 2010
Posts:
17
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hello,

I am stuck on a problem I can't seem to fix or find any information on. I have the following displayed on my checkout pages, and for the life of me, I can't fix.

TEXT_ORDER_STEP1 TEXT_ORDER_STEP2 TEXT_ORDER_STEP3 TEXT_ORDER_STEP4

Also, the ORDER_STEPS_IMAGE_ALT is missing.

I have tried changing the "echo" statements in the TPL_PHP files, but when I do that and refresh my browser, the whole page disappears.

Thank you in advance for any assistance.

31 Oct 2010, 2:16 PM
#3071
countrycharm avatar

countrycharm

Totally Zenned

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

Re: Cherry Zen Template Support Thread

SKlos:

Hello,

I am stuck on a problem I can't seem to fix or find any information on. I have the following displayed on my checkout pages, and for the life of me, I can't fix.

TEXT_ORDER_STEP1 TEXT_ORDER_STEP2 TEXT_ORDER_STEP3 TEXT_ORDER_STEP4

Also, the ORDER_STEPS_IMAGE_ALT is missing.

I have tried changing the "echo" statements in the TPL_PHP files, but when I do that and refresh my browser, the whole page disappears.

Thank you in advance for any assistance.
Make sure you you have renamed all the cherry_zen folders to your_custom folder name. Looks like you have missed includes/languages/english/extra_definitions/your_template/order_steps_defines.php file or one of the other files. It's hard to figure out without a link to your site.

31 Oct 2010, 4:48 PM
#3072
sklos avatar

sklos

New Zenner

Join Date:
Oct 2010
Posts:
17
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

countrycharm:

Make sure you you have renamed all the cherry_zen folders to your_custom folder name. Looks like you have missed includes/languages/english/extra_definitions/your_template/order_steps_defines.php file or one of the other files. It's hard to figure out without a link to your site.

Countrycharm - thank you for your response! I will check my folder structure to see if there is anything amiss. If I read your response correctly, it would appear I should have no "cherry_zen" folders anywhere under my custom directory, correct?

1 Nov 2010, 12:22 AM
#3073
countrycharm avatar

countrycharm

Totally Zenned

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

Re: Cherry Zen Template Support Thread

SKlos:

Countrycharm - thank you for your response! I will check my folder structure to see if there is anything amiss. If I read your response correctly, it would appear I should have no "cherry_zen" folders anywhere under my custom directory, correct?
That would be correct. If you are using a custom directory then cherry_zen should be the name of your custom directory when uploading.

7 Nov 2010, 3:42 AM
#3074
wingc3 avatar

wingc3

New Zenner

Join Date:
Mar 2009
Posts:
75
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I am attempting to combine my background images into CSS Sprites, and Google Page Speed gives me the following recommendations:

The following images served from yourdomain.com should be combined into as few images as possible using CSS sprites.

* /includes/templates/cherry_zen/images/delim_h.gif
*/includes/templates/cherry_zen/images/delim_v.gif
*/includes/templates/cherry_zen/images/orange/header.gif
* /includes/templates/cherry_zen/images/orange/sideboxbg.gif
* /includes/templates/cherry_zen/images/orange/tableftE.gif
* /includes/templates/cherry_zen/images/rounded-search-input.gif
* /includes/templates/cherry_zen/images/shadow_e.png
* /includes/templates/cherry_zen/images/shadow_n.png
* /includes/templates/cherry_zen/images/shadow_ne.png
* /includes/templates/cherry_zen/images/shadow_nw.png
* /includes/templates/cherry_zen/images/shadow_s.png
* /includes/templates/cherry_zen/images/shadow_se.png
* /includes/templates/cherry_zen/images/shadow_sw.png
* /includes/templates/cherry_zen/images/shadow_w.png

Does anybody know the proper code to implement for this?

7 Nov 2010, 2:15 PM
#3075
daymobrew avatar

daymobrew

New Zenner

Join Date:
Oct 2008
Posts:
48
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

wingc3:

I am attempting to combine my background images into CSS Sprites, and Google Page Speed gives me the following recommendations:

The following images served from yourdomain.com should be combined into as few images as possible using CSS sprites.

  • snip file list *
    Does anybody know the proper code to implement for this? Not all images can be combined into a sprite - you will have examine each image and how it is used.

There are multiple tutorials that you should read.

10 Nov 2010, 5:32 AM
#3076
sklos avatar

sklos

New Zenner

Join Date:
Oct 2010
Posts:
17
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hey there folks! Fairly new to ZenCart and Cherry Zen, but getting the hang of it. But, I am a little stumped right now. One of the options I want to offer on my site is a "Product of the Month" Club. The goal is for someone to order it, and somehow track it so that they are shipped out one of our products at the same time on a monthly basis. We would also like to offer an Auto Ship option, where someone can order a product and have it shipped to them at regular intervals for a set period of time.

Has anyone managed to do this with ZenCart? If so, how?

Thank you!

10 Nov 2010, 3:21 PM
#3077
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

I am using Cherry Zen for my site but when you go through the checkout processing I get this:

TEXT_ORDER_STEPS_1TEXT_ORDER_STEPS_2TEXT_ORDER_STEPS_3
TEXT_ORDER_STEPS_4
with no image on top,,, How can I fix this?

10 Nov 2010, 4:03 PM
#3078
countrycharm avatar

countrycharm

Totally Zenned

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

Re: Cherry Zen Template Support Thread

bkeaton:

I am using Cherry Zen for my site but when you go through the checkout processing I get this:

TEXT_ORDER_STEPS_1TEXT_ORDER_STEPS_2TEXT_ORDER_STEPS_3
TEXT_ORDER_STEPS_4
with no image on top,,, How can I fix this?
Check this out. You just need to do a little reading.
http://www.zen-cart.com/forum/showpost.php?p=954088&postcount=3079

10 Nov 2010, 4:06 PM
#3079
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

countrycharm:

Make sure you you have renamed all the cherry_zen folders to your_custom folder name. Looks like you have missed includes/languages/english/extra_definitions/your_template/order_steps_defines.php file or one of the other files. It's hard to figure out without a link to your site.

This doesn't help me much. I need more information about this I don't see a file called: order_steps_defines.php

10 Nov 2010, 4:16 PM
#3080
countrycharm avatar

countrycharm

Totally Zenned

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

Re: Cherry Zen Template Support Thread

bkeaton:

This doesn't help me much. I need more information about this I don't see a file called: order_steps_defines.php
If you don't have it then that is your problem. Download fresh copy of Cherry Zen Template upload the includes/languages/english/extra_definitions/cherry_zen/order_steps_defines.php file. Make sure if you are using a your_custom folder, you renamed all the cherry_zen folders to your_custom folder name.