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

Cherry Zen Template Support Thread

Views: 844,718

Results 1,821 to 1,840 of 3,245
08 Aug 2008, 13:55
#1821
jettrue avatar

jettrue

Totally Zenned

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

Cherry Zen Template Support Thread

kal:

I don't think you can use .jpg, you just got to rename it to .gif or it won't be recognised.

No, of course you can change it, see my post directly above.

08 Aug 2008, 14:19
#1822
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

xt0rt:

I have found different snippets throughout this thread, but rather than go through the nearly 2000 posts I'm just going to ask my question...

I need to change the font color in the footer, as well as eliminate the gap in the footer between HOME and the table. Could someone please advice as to where I make these changes?

Thanks in advance!

To remove all spacing down there, you can change #navSupp and #navSupp ul to this (adjust the padding how you'd like it):

#navSupp {
	margin:0 auto;
	text-align:center;
	padding:0;
}
#navSupp ul {
	list-style-type:none;
	text-align:center;
	line-height:1em;
	padding:0;
        margin:0;
}

To change the colors on the bottom, you would use these sections:

#navSupp ul li a {color:#ffffff;}
#navSupp ul li {color:#ffffff;}
#siteinfoLegal {color:#ffffff;}
#siteinfoLegal a {color:#ffffff;}

To change the footer general text, you need to view the source of your page, then find out what the section is called that you wan to change, for example, from the source of my site:

08 Aug 2008, 14:37
#1823
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

kal:

I have an annoying problem here. Does anybody know why on all my product description pages my entire left side boxes gets pushed to the bottom, whereas the right hand side boxes remain in place? You can see this clearly on the link below:

http://www.its-digital.com/index.php?main_page=product_info&cPath=6&products_id=21&zenid=80cd7cff3af338b267bf162c25d3662c

Try reducing the width here, in the slide tabs menu stylesheet:

#slidetabsmenu {
float: left;
width: 100%;
font-size: 93%;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #84776b;
line-height: normal;
}

You might also need to remove the padding here:

#slidetabsmenu ul {
  margin:0;
  padding:10px 10px 10px 10px;
  list-style:none;
  }

Does the same thing happen when tab menu is off?

08 Aug 2008, 14:41
#1824
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

stoto:

Looks like all my answer will be in common/tpl_header.php
Posted via Mobile Device

You can turn off the category tabs in the admin, under "configuration", "Layout settings", "Categories-Tabs Menu ON/OFF"

08 Aug 2008, 16:04
#1825
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

I read back about a dozen pages and tried the search this thread to no avail. I would like to put the shopping cart in the header centered above the right column.

Something Like This:

This came from the iC-Acadame template, but I am not sure how to implement it.

Site: http://www.bulklights.com/NATIVITYDISPLAYS/ will become nativitydisplays.com as soon as I get product listed. The graphics are crappy right now, just placeholders until I get the basic template and design done.

THANKS
JOhn ><>

08 Aug 2008, 20:50
#1826
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

Zen-Cart 1.3.8.a Fresh Install
Cherry Zen current
PHP 5
MySQL 5

My second test product has a table in it's description. When I display the item the table is not contained in the description box and overlaps the Discount table.
http://www.bulklights.com/NATIVITYDISPLAYS/index.php?main_page=product_info&cPath=2_3&products_id=2

See an item without the table
http://www.bulklights.com/NATIVITYDISPLAYS/index.php?main_page=product_info&cPath=2_3&products_id=1

Am I going to have to eliminate the table in about 200 items, or is there a work around?
JOhn ><>

08 Aug 2008, 20:54
#1827
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

Actually I need to move the discount qty table to above the Add to Cart button, can you point me in the right direction to move it?

:D JOhn ><>

09 Aug 2008, 13:21
#1828
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

Stuff4Toys:

Zen-Cart 1.3.8.a Fresh Install
Cherry Zen current
PHP 5
MySQL 5

My second test product has a table in it's description. When I display the item the table is not contained in the description box and overlaps the Discount table.
http://www.bulklights.com/NATIVITYDISPLAYS/index.php?main_page=product_info&cPath=2_3&products_id=2

See an item without the table
http://www.bulklights.com/NATIVITYDISPLAYS/index.php?main_page=product_info&cPath=2_3&products_id=1

Am I going to have to eliminate the table in about 200 items, or is there a work around?
JOhn ><>
Workaround: add this to your css:

#productDescription table {float:none;margin:.3em;}
``` :clap:
09 Aug 2008, 13:23
#1829
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

Stuff4Toys:

Actually I need to move the discount qty table to above the Add to Cart button, can you point me in the right direction to move it?

:D JOhn ><>

Open includes/templates/cherry_zen/templates/tpl_product_info_display.php and find the quantity discount section, and move it to above the add to cart section.

09 Aug 2008, 13:24
#1830
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

Stuff4Toys:

I read back about a dozen pages and tried the search this thread to no avail. I would like to put the shopping cart in the header centered above the right column.

Something Like This:

This came from the iC-Acadame template, but I am not sure how to implement it.

Site: http://www.bulklights.com/NATIVITYDISPLAYS/ will become nativitydisplays.com as soon as I get product listed. The graphics are crappy right now, just placeholders until I get the basic template and design done.

THANKS
JOhn ><>

That's a complicated request, and I can't instruct you how to do it without doing it myself. You could download the iC-Acadame template and at least get the code necessary to get started.

09 Aug 2008, 13:33
#1831
markus75 avatar

markus75

New Zenner

Join Date:
Aug 2008
Posts:
46
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hello, i am new to zencart and i like very much your template.
I am trying to install it, but i can't see the sideboxes, th site is: http://www.footballmaniax.com what can be wrong?
Thanks in advance for your help.

09 Aug 2008, 13:41
#1832
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

markus75:

Hello, i am new to zencart and i like very much your template.
I am trying to install it, but i can't see the sideboxes, th site is: http://www.footballmaniax.com what can be wrong?
Thanks in advance for your help.

Turn on the sideboxes, under "Tools", "layout boxes controller". By the way, the readme.txt file will answer a lot of your questions, this one is answered in step 4. of the installation instructions. :cool:

10 Aug 2008, 21:00
#1833
darktowerhobbies avatar

darktowerhobbies

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

ok I am going to give this tempalte another go and all seems well except I have the line HEADER_SALES_TEXT below my logo.

I have read the readme first doc and there is nothing in there and since this thread is now over 185 pages long I might be reasking an old question.

the url is http://www.durinstower.com/shop

This is a test server

Thanks

11 Aug 2008, 01:50
#1834
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

darktowerhobbies:

ok I am going to give this tempalte another go and all seems well except I have the line HEADER_SALES_TEXT below my logo.

I have read the readme first doc and there is nothing in there and since this thread is now over 185 pages long I might be reasking an old question.

the url is http://www.durinstower.com/shop

This is a test server

Thanks
Looks like you wanted to remove the sales text section, but did it incorrectly. You should have changed this:

define('HEADER_SALES_TEXT', 'Your logo could be wider here, Sales Header Text Could Be here, Or a Banner Image, or any combination of the three; find instructions in the readme.txt, which you have read already, right?');

To this:

define('HEADER_SALES_TEXT', '');
11 Aug 2008, 16:24
#1835
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

I am having exactly the same issue as this post.

heavenlynights:

reposting problem I am experiencing with the large image on product info pages.

This problem is to do with the drop shadow on product images and the zen lightbox mod.

When you are using this template along with zen lightbox, something throws the drop image out. I managed to fix this using some instruction found in this thread.

But as soon as I did this, it fixed the initial problem but created another problem where as on the product info page, when you click on the text link "larger Image" it takes you back to the index page instead of opening up the image.

Any suggestions on how to fix would be much appreciated!!. link to a product can be found by Clicking Here

TIA
http://www.zen-cart.com/forum/showpost.php?p=529367&postcount=1117
I have been reading this thread now for 2 hours [march - april - may] and have not found an answer to this post. I looked at the authors site and it appears that a solution was found. Can anyone point me to a solution to this? :dontgetit I may have read tight past the answer and didn't even notice it.

NEXT - When I installed Lightbox, IH2 popups stopped. I noticed that the .js associated with IH2 popup is not loading automatically anymore. Do I need to add it manually to the html_header file?

THANKS
JOhn ><>

11 Aug 2008, 17:01
#1836
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

Stuff4Toys:

NEXT - When I installed Lightbox, IH2 popups stopped. I noticed that the .js associated with IH2 popup is not loading automatically anymore. Do I need to add it manually to the html_header file?
JOhn ><>
After Reading pages 125 to 16? it finally dawned on me that I read the answer about a dozen times. When I installed Lightbox, it created a css folder under the cherry_zen folder so the one in the template_default folder was ignored. I copied everything that IH2 installed in the template_default to the cherry_zen folder and "viola" :bigups:

Now I still have a problem with Lightbox. It seems as if all the js is loaded, but the large images don't load in a lightbox. grrrrr Seems as if both programs have a tpl_main_page.php, anyone have an idea what needs to be merged?

Zen-Cart 1.3.8a

JOhn ><>

11 Aug 2008, 18:33
#1837
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

New day new trouble
The add to cart box is 125px wide according the the stylesheet.

In IE7 the qty box wraps to the second line and no space between the word Max: and the box.
In FF3 everything looks correct.

I cannot program a square box, so I tried putting a <br /> between the qty box and the statement that calls for the Min/Units/Max and of course the page refused to load.

Is there a way to insert a break (programmaticly) so the qty box stays on the same line as the words Add to Cart: ? I can then adjust the stylesheet to 135px to is all stays together.

JOhn ><>

11 Aug 2008, 20:09
#1838
stuff4toys avatar

stuff4toys

Totally Zenned

Join Date:
May 2007
Location:
SW Florida
Posts:
1,062
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

jettrue:

Workaround: add this to your css:

#productDescription table {float:none;margin:.3em;}

THANKS JADE
I appreciate all your hard work and putting up with my innate ability to mess things up.
Helped with FF but not IE
12 Aug 2008, 09:57
#1839
thailandosc avatar

thailandosc

New Zenner

Join Date:
Jul 2008
Posts:
15
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Id like to add a background image to the whole site.
In the stylesheet i cant find how to put a background image for the whole site

Thanks

13 Aug 2008, 00:15
#1840
gsdcypher avatar

gsdcypher

Totally Zenned

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

Re: Cherry Zen Template Support Thread

hi jettrue,

the tabs (home, login, my account, etc) are aligned right.

which line of code controls that? i would like to make them align left...

thanks.