Zen Cart Logo
Forums / Addon Templates / Apple Zen Support Thread

Apple Zen Support Thread

Views: 855,607

Results 2,061 to 2,080 of 3,042
19 Jun 2008, 8:24 PM
#2061
athena avatar

athena

Totally Zenned

Join Date:
Jan 2006
Location:
NM
Posts:
740
Plugin Contributions:
0

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.

19 Jun 2008, 9:43 PM
#2062
ash avatar

ash

New Zenner

Join Date:
Aug 2004
Posts:
16
Plugin Contributions:
0

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.

20 Jun 2008, 12:33 PM
#2063
athena avatar

athena

Totally Zenned

Join Date:
Jan 2006
Location:
NM
Posts:
740
Plugin Contributions:
0

Re: Apple Zen Support Thread

Are the ones you want specified for the right side?

20 Jun 2008, 6:03 PM
#2064
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

jdhone:

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.

20 Jun 2008, 6:05 PM
#2065
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

ash:

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.

20 Jun 2008, 6:07 PM
#2066
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

dalewz:

Sorry, I am still not sure how to correct this. it is in zencart/includes/templates/apple_zen/common/tpl_drop_menu.php

I tried the following:

  1.    <div id="dropMenu">
    

#dropMenu {font-size:.9em;}
<ul class="level1">
2. <div id="dropMenu" font-size:.5em>

both are not working. the site is fx.pcmfx.com

thanks, -dale

Oh, NO, that is CSS, and goes into includes/templates/apple_zen/css/stylesheet.css

20 Jun 2008, 6:11 PM
#2067
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

silkhouse:

hi, Does anyone know how to display a row of category images like Jade did on
http://www.zencart137.jadetrue.com/ ?

Many thanks.
Your site should already do the categories like this, I'd suspect you have the same issue as jdhone, see my reply a few posts up. Also, a link is ALWAYS helpful.

Though if you want your PRODUCTS to display in a row, you'd need to install this.
Column Layout Grid Mod

21 Jun 2008, 1:30 AM
#2068
johnga avatar

johnga

Zen Follower

Join Date:
Oct 2005
Location:
San Francisco
Posts:
100
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi, I have been trying to resolve an issue for several weeks. I am getting many complaints from customers about my web site not displaying properly in IE. Since i am a Mac user, I have no way of knowing what is going wrong. Can anyone take a look at the site and suggest a solution? Thanks very much

https://www.goldenapplels.com/ZcartGA/

21 Jun 2008, 5:41 AM
#2069
molywerks avatar

molywerks

Zen Follower

Join Date:
Aug 2006
Posts:
136
Plugin Contributions:
0

Re: Apple Zen Support Thread

21 Jun 2008, 12:23 PM
#2070
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

johnga:

Hi, I have been trying to resolve an issue for several weeks. I am getting many complaints from customers about my web site not displaying properly in IE. Since i am a Mac user, I have no way of knowing what is going wrong. Can anyone take a look at the site and suggest a solution? Thanks very much

https://www.goldenapplels.com/ZcartGA/

First thing I would do, is fix the head portion of your site. You have css there, I would move that to a file in includes/templates/YOUR_TEMPLATE/css/. All css belongs in the <head> portion of the website, you have it within the <body>.

also, you have a second </head> up there.

If you view the source of your site, you'll see what I mean, but here is the chunk I'm referring to:

  <style type="text/css">
<!--
#divnavbarz  a:hover {
	font-size: 12px;
	color: #FFFFFF;
	background-color: #FF9801;
	text-decoration: none;
}
#divnavbarz {
	background-image: url(../assets/banner2008_02_2.gif);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
}
#divnavbarz a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
#navbarz {
	text-align: right;
}
-->
</style>
</head>

<link href="../css/stylesheet.css" rel="stylesheet" type="text/css" />
<body>
<div align="center">
  <style type="text/css">
<!--
body {
	background-color: #FFFFFF;
}
-->

</style>
</div>

All of that needs to be gone.

Don't know if that's your issue, but fixing it will get you a step closer.

21 Jun 2008, 1:55 PM
#2071
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Apple Zen Support Thread

https://www.doodlebuckets.com Can you take a look at my main page and tell me what is determining the font size and style on the main page text? I want it to match the rest of the site but I it's not. I take the code from the Define Pages Editor and put it in my HTML editor (NVU) and it displays properly there. So the style must be coming from somewhere else and messing it up, right? Thanks in advance!

22 Jun 2008, 3:51 AM
#2072
saplanet avatar

saplanet

New Zenner

Join Date:
Jun 2008
Location:
Singapore, Australia, America
Posts:
97
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi there,

I am just starting up the shopping cart, and I wonder how do I add the newsletter subscription in the sidebox? does apple zen has that feature, and where can I find that?

thank you,
Lis

22 Jun 2008, 5:18 AM
#2073
saplanet avatar

saplanet

New Zenner

Join Date:
Jun 2008
Location:
Singapore, Australia, America
Posts:
97
Plugin Contributions:
0

Re: Apple Zen Support Thread

saplanet:

Hi there,

I am just starting up the shopping cart, and I wonder how do I add the newsletter subscription in the sidebox? does apple zen has that feature, and where can I find that?

thank you,
Lis

I have added the addons from the download, so this is solved.

22 Jun 2008, 5:20 AM
#2074
saplanet avatar

saplanet

New Zenner

Join Date:
Jun 2008
Location:
Singapore, Australia, America
Posts:
97
Plugin Contributions:
0

Re: Apple Zen Support Thread

I have another problem now. I just installed the lightbox image handler, and everything works well, except that the drop menu is showing (laid over) the lightbox, how can I fix this to have the drop menu hidden behind the lightbox?

see example here: http://simpleartsplanet.com/shopspree/index.php?main_page=product_info&cPath=1&products_id=1

Thank you

22 Jun 2008, 5:23 AM
#2075
saplanet avatar

saplanet

New Zenner

Join Date:
Jun 2008
Location:
Singapore, Australia, America
Posts:
97
Plugin Contributions:
0

Re: Apple Zen Support Thread

I am having another problem, I have just installed the lightbox image handler, and everything goes well, except that when the lightbox is activated upon clicking on the image, the dropdown menu is showing overlaying the lightbox. What can I do to make the menu hide behind the lightbox when it's activated?

22 Jun 2008, 6:26 PM
#2077
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

Doodlebuckets:

https://www.doodlebuckets.com Can you take a look at my main page and tell me what is determining the font size and style on the main page text? I want it to match the rest of the site but I it's not. I take the code from the Define Pages Editor and put it in my HTML editor (NVU) and it displays properly there. So the style must be coming from somewhere else and messing it up, right? Thanks in advance!

I'm not sure WHY its doing it, but for some reason the table in your center content section is using a larger font size. So go to define_main_page.php in your admin under "Tools", Define Pages Editor", and change this:

<table class="" style="width: 614px; height: 783px; text-align: left;" border="0" cellpadding="2" cellspacing="2">

To this:

<table class="" style="width: 614px; height: 783px; text-align: left;[B]font-size:1em;[/B]" border="0" cellpadding="2" cellspacing="2">
24 Jun 2008, 9:48 AM
#2079
vivaraquel avatar

vivaraquel

Zen Follower

Join Date:
Sep 2004
Location:
Australia
Posts:
305
Plugin Contributions:
0

Re: Apple Zen Support Thread

flax:

I think that you should use an external text editor instead of the zencart one. (you should use the override system and place the revised file in a folder with the name of your template alongside the original file)
You can first downolad the file (define_main_page.php in this case) with a free ftp client (filezilla is a good option) and then modify it with a free text editor (notepad is a good option).
Finally you upload the modified file with filezilla and you should have no problems.
Let me know if I can be of help.

i tried that and now my site is not showing correctly, so I wont be doing it that way. And I read about some download to use for editing text but it seems not to work properly eigther.

If anyone does anything different , let me know cuz although i love this template, the text editing on it is truly trying my patience.

Thank you.

24 Jun 2008, 9:52 AM
#2080
vivaraquel avatar

vivaraquel

Zen Follower

Join Date:
Sep 2004
Location:
Australia
Posts:
305
Plugin Contributions:
0

Re: Apple Zen Support Thread

Great and I just dropped off some flyers for that site today ...... no early night for me.