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

Apple Zen Support Thread

Views: 855,579

Results 2,261 to 2,280 of 3,042
21 Sep 2008, 12:22 PM
#2261
ok_computer avatar

ok_computer

Zen Follower

Join Date:
Jan 2005
Location:
Old Blighty
Posts:
86
Plugin Contributions:
0

Apple Zen Support Thread

Hello again,

Firstly, I didn't say thank you for the first time you looked in to one of my issues with the template, so thank you very much.

Anyway, I'm trying to modify another couple of things with the apple zen template. It's to do with the product listings. I'm trying to put a border around the image of each product, rather like this example: https://shanalogic.com/category.php?category_id=144 . I have tried my best looking through the stylesheet, putting a border round appropriate styles but to no avail.

I'm also trying to get the 'buy' button lined up with the price, on the same line. How can I go about doing this?

Another thing is trying to remove the line breaks between the model and price. Is this possible to do? I've removed all <br /> tags apart from the 'implode' one in product_listing.php, and has got rid of most line breaks, but not the one between model and price.

My website is currently at: http://sh1.valcatohosting.com/~arcademu

Thanks very much for your help in advance.

24 Sep 2008, 12:41 AM
#2262
gizemo avatar

gizemo

New Zenner

Join Date:
Sep 2008
Posts:
2
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hello apple zen,
I'm new to apple zen. i've arlready installed your apple zen templates. but something wrong :

  1. after i activate search header, it's not only show the header search but also in the right box, even if i already set up to left box
  2. i've seen your sampe http://www.zencart137.jadetrue.com/index.php?main_page=index. how to add show trail image that you have on this page?
  3. how to add another right box that contain google search or google adsense
  4. how to add total visitor counter in the 'whos online' box?

thankyou, sorry so many question, since i'm really new to .php and web :D

24 Sep 2008, 12:42 AM
#2263
xrobvx818 avatar

xrobvx818

New Zenner

Join Date:
Mar 2008
Posts:
17
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

You will need to give each section its own id in includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

Like so:

<li class="submenu" [B]id="catalog"[/B]><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a> <li class="submenu" [B]id="categories"[/B]><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_CATEGORIES; ?></a> <li class="submenu" [B]id="information"[/B]><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_INFORMATION; ?></a> <li [B]id="contact"[/B]><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li> <li class="submenu" [B]id="cart"[/B]><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> <li i[B]d="cart"[/B]><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li> ``` > > Then you can give them each their own image in the css.

where in the php file do you put this?

24 Sep 2008, 1:09 AM
#2264
xrobvx818 avatar

xrobvx818

New Zenner

Join Date:
Mar 2008
Posts:
17
Plugin Contributions:
0

Re: Apple Zen Support Thread

xRobVx818:

where in the php file do you put this?

actually i just figured it out

24 Sep 2008, 2:01 AM
#2265
artcoder avatar

artcoder

Zen Follower

Join Date:
Jan 2007
Posts:
166
Plugin Contributions:
0

Re: Apple Zen Support Thread

How would I alter this code ...

require_once (DIR_WS_CLASSES . 'categories_ul_generator.php');
 $zen_CategoriesUL = new zen_categories_ul_generator;
 $menulist = $zen_CategoriesUL->buildTree(true);
 $menulist = str_replace('"level4"','"level5"',$menulist);
 $menulist = str_replace('"level3"','"level4"',$menulist);
 $menulist = str_replace('"level2"','"level3"',$menulist);
 $menulist = str_replace('"level1"','"level2"',$menulist);
 $menulist = str_replace('<li class="submenu">','<li class="submenu">',$menulist);
 $menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist);
 echo $menulist;

So instead of displaying the drop list from a top-level category ...

It displays starting from a second level category as in ...

24 Sep 2008, 4:33 AM
#2266
xrobvx818 avatar

xrobvx818

New Zenner

Join Date:
Mar 2008
Posts:
17
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

You will need to give each section its own id in includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

Like so:

<li class="submenu" [B]id="catalog"[/B]><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a> <li class="submenu" [B]id="categories"[/B]><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_CATEGORIES; ?></a> <li class="submenu" [B]id="information"[/B]><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_INFORMATION; ?></a> <li [B]id="contact"[/B]><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li> <li class="submenu" [B]id="cart"[/B]><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> <li i[B]d="cart"[/B]><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li> ``` > > Then you can give them each their own image in the css.

alright I got the images to work and everything is fine in Firefox, but in IE 6 the images and dropdown menus are all justified to the right. how can i make them justified to the left like they should be?

here is my css file, this is my website http://www.kingpinstatus.com

body {  
	behavior: url(includes/csshover.htc);
	}
	
/*green
div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover {color: #4f4f4f!important;background:#D5E88F;}
*/

/*blue
div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover, div#dropMenu ul.level2 a:hover {color: #ffffff!important;background:#6C99D9;}
*/ 

/*red */ 
div#dropMenu ul.level2 a:hover {
	color: #FFFFFF important;
	background-color: #FFFFFF; /*background:#DC262E;originally 650302, then beigeF7E2AD*/
}


/*grey 
div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover, div#dropMenu ul.level2 a:hover {color: #4f4f4f!important;background:#D5D5D5;}
*/
	
div#dropMenu {
	width:70em;
	margin:0 auto;
	text-align:center;
	z-index:1000;
	position:relative;
	
	}

div#dropMenu ul {
    margin:0;
	padding:0;
	
	}
	
div#dropMenu li {
	position:relative;
	list-style:none; 
	margin:0; 
	float:left; 
	line-height:1em;
	width:14.285%;
	*width:14.255%;
	}


	
div#dropMenu ul.level1 {
	width:70em;
	margin:0 auto; 
	text-align:center;
	background:url(../images/menubg.jpg) repeat-x; /*background color of top menu when NOT selected. */
	z-index:1000;
	float:left;
	height:33px;
	}


div#dropMenu ul.level1 ul.level2 li a {background-image:none;} /*added per jadetrue*/

div#dropMenu li a {
	display: block;
	/* Hides from IE5-mac \*/
	height: 1%;
	/* End hide from IE5-mac */ 
	padding: .6em 0; 
	text-decoration: none; 
	text-transform:uppercase; 
	color:#ffffff; 
	text-align:left; 
	text-indent:-9000px;
	}	
	
div#dropMenu ul li ul li a {text-indent:0!important;}
	
a.shop {
	background: #993300 url(../buttons/english/boxhead-categories.gif) no-repeat;
	background-image: url(../buttons/english/boxhead-categories.gif);
}


#navColumnTwo #categories a {background:none;}



	
	
	
	
	
div#dropMenu ul.level1 li {background: url(../images/menubg.jpg) no-repeat;}
div#dropMenu ul.level1 ul.level2 li {background-image:none;}		
div#dropMenu li:hover {}
/* div#dropMenu li.submenu {background: url(../images/dropmenu.gif) 95% 50% no-repeat;}url(../images/boxhead-categories.gif) 95% 50% no-repeat originally commented out*/
div#dropMenu li.submenu:hover {}
div#dropMenu li a.noLine {border:none;}
div#dropMenu>ul a {width: auto;z-index:1000;}
div#dropMenu ul ul {display: none;}
div#dropMenu ul ul li {border-bottom: 1px solid #CCC; width:12em;z-index:1000;} /*originally 12em;, then 12.6em*/
div#dropMenu li.submenu li.submenu {background: url(../images/submenu.gif) 95% 50% no-repeat;} /*orig commented out*/
div#dropMenu ul.level1 li.submenu:hover ul.level2, 
div#dropMenu ul.level2 li.submenu:hover ul.level3,
div#dropMenu ul.level3 li.submenu:hover ul.level4,
div#dropMenu ul.level4 li.submenu:hover ul.level5,
div#dropMenu ul.level5 li.submenu:hover ul.level6,
div#dropMenu ul.level6 li.submenu:hover ul.level7,
div#dropMenu ul.level7 li.submenu:hover ul.level8 {position: absolute; width: 12em;display:block;z-index:1000;} /*originally 12em;*/
div#dropMenu ul.level2 {
	background:#4f4f4f; /*originally #4f4f4f;*/
	z-index:1000;
	position:absolute;
	left:0;
	
}
div#dropMenu ul.level3, 
div#dropMenu ul.level4, 
div#dropMenu ul.level5, 
div#dropMenu ul.level6, 
div#dropMenu ul.level7,
div#dropMenu ul.level8{
	top: 0;
	left: 12em; /*originally 12em;*/
	background:#4f4f4f;

}
div#dropMenu ul.level2 a {padding: 0.5em 0 0.5em 0em;color: white; text-transform:none;}  /* this is text color on drop-down submenu */
div#dropMenu ul.level2 a:hover {color:#4f4f4f;}

.clearBoth {
	clear:both;
	height:0;
	font-size:0;
	line-height:0;
	}
	
	
#categories a, #categories a:hover {
	background-image: url(../images/navbar_shop.gif);
	background-repeat: no-repeat;
	background-position: center-y;
}
#cart a, #cart a:hover{
	background-image: url(../images/navbar_cart.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#catalog a, #catalog a:hover {
	background-image: url(../images/navbar_home.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#information a, #information a:hover {
	background-image: url(../images/navbar_info.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#contact a, #contact a:hover {
	background-image: url(../images/navbar_contact.gif);
	background-repeat: no-repeat;
	background-position: center;

}
#account a, #account a:hover {
	background-image: url(../images/navbar_account.gif);
	background-repeat: no-repeat;
	background-position: center;
}
25 Sep 2008, 10:47 AM
#2267
epsports avatar

epsports

New Zenner

Join Date:
Jul 2007
Posts:
21
Plugin Contributions:
0

Re: Apple Zen Support Thread

SOS Jettrue

Is there any way of embedding a login box within the header?
I have tried login_header download, seems old and I get a security error.
I wanted to try and use the code from the login_box contrib but i'm lost with what code i should actually incorporate.
2 days of stress, client no happy, me even unhappier!
If you can give me any advice whatsoever on what to incorporate and where, I'd be much appreciative!
Domain : sta rlig htmo bil es .com

Thank you in advance,
Chris aka kopite212

25 Sep 2008, 9:50 PM
#2268
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

Cowgirlsoap:

I am fairly new to Zen. LOVE it. And LOVE this template. I am trying to randomize the logo image so that a slightly different image will appear on each refresh. I've done this with oscommerce, but can't seem to get anything working right with my new Zen'd store. Could you point me in the right direction?

Thanks!
Jen

I've never done this. Perhaps ask in the general forum, as the answer would be the same no matter the template. Enjoy!

25 Sep 2008, 9:54 PM
#2269
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

rmaldonado:

Hi, I'm using this template in https://www.todoenguate.com excellent, but I have the problem that when on-site in IE6 in the startup menu, categories, information does not open the submenu. I have also the problem that when you put the sidebox logon and search, I put all sidebox to bottom of page. I need your help please. In Firefox works all too well.

My English is not very good.

Thank you

Rolando Maldonado. :frusty: :oops:

Read the readme, follow the instructions for the .htaccess file and the csshover.htc file so that the menu will work in all browsers. I can't help with the sidebox login and search, since you have them off right now.

25 Sep 2008, 9:57 PM
#2270
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

xRobVx818:

where in the php file do you put this?

Open up the file that I mentioned, look for those sections, and then adjust as I described. You don't "PUT" that section anywhere its about making an adjustment.

25 Sep 2008, 10:45 PM
#2271
gizemo avatar

gizemo

New Zenner

Join Date:
Sep 2008
Posts:
2
Plugin Contributions:
0

Re: Apple Zen Support Thread

I managed for show trail. But I still still dont know why the search not only show on header but also on right box?? Can anyone help me please....:cry:

I activate manufacture on the right box, but the pull down function doesnt work.... Right now i'm still working on local host...

Can anyone help me please....:cry:

26 Sep 2008, 7:46 AM
#2272
anniti avatar

anniti

New Zenner

Join Date:
May 2008
Posts:
33
Plugin Contributions:
0

Re: Apple Zen Support Thread

I am trying to randomize the logo image so that a slightly different image will appear on each refresh.
and if you wrap your logo into a banner?

27 Sep 2008, 12:42 AM
#2273
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

gizemo:

I managed for show trail. But I still still dont know why the search not only show on header but also on right box?? Can anyone help me please....:cry:

I activate manufacture on the right box, but the pull down function doesnt work.... Right now i'm still working on local host...

Can anyone help me please....:cry:

In the "tools", "layout boxes controller", then search_header.php should be set to OFF for the left/right status and only ON for the SINGLE COLUMN STATUS.

Adjust what you have set in "Configuration", "Maximum Values", "Manufacturers List - Scroll Box Size/Style" to change the way the manufacturer dropdown works.

1 Oct 2008, 5:42 PM
#2274
rmaldonado avatar

rmaldonado

New Zenner

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

Re: Apple Zen Support Thread

jettrue:

Read the readme, follow the instructions for the .htaccess file and the csshover.htc file so that the menu will work in all browsers. I can't help with the sidebox login and search, since you have them off right now.

Thanks Jade, I check the .htaccess and have the changes that you explain. When i check the csshover.htc I find the big problem... I not upload the csshover.htc

Now it works :flex::clap::clap::clap::clap::bigups::bigups:

For the sidebox of login and search I cut in the source code someting lake that $colum_with-30. With this cut the long of the field it´s reduce and now show ok.

Thanks new

Rolando Maldonado

2 Oct 2008, 7:13 AM
#2275
xrobvx818 avatar

xrobvx818

New Zenner

Join Date:
Mar 2008
Posts:
17
Plugin Contributions:
0

Re: Apple Zen Support Thread

how can the buttons for "add to cart" , "previous", next" , etc. be changed to images?

2 Oct 2008, 7:25 AM
#2276
xrobvx818 avatar

xrobvx818

New Zenner

Join Date:
Mar 2008
Posts:
17
Plugin Contributions:
0

Re: Apple Zen Support Thread

xRobVx818:

how can the buttons for "add to cart" , "previous", next" , etc. be changed to images?

nevermind I found them in this directory in case somebody else needed to know.

includes/templates/apple_zen/buttons/english/

3 Oct 2008, 1:24 AM
#2277
charmedbytina2 avatar

charmedbytina2

Totally Zenned

Join Date:
Mar 2007
Location:
AZ
Posts:
1,890
Plugin Contributions:
0

Re: Apple Zen Support Thread

HI!

I've installed this template and changed the colors and a few other things.

I have a few "little" problems now.

  • Home at the bottom is not placed corrrectly
  • The header bars for New Products, etc need a setting (margin right?) so they stop before the main content area ~ similar to the spacing at the beginning of the bar.
  • The line height on the main page (and probably others) won't allow a font size larger than 18 ~ and 18 still seems kind of squeezed togetherThe site is http://www.xchainstoreclothingonline.com/shop/

(Jade sorry for the hack job to your beautiful template!)

Tina

3 Oct 2008, 4:48 AM
#2278
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Apple Zen Support Thread

I'm driving myself nuts trying to track this down...! :blink:
I would like to change the background color of this white area. (The area where it states: I want to change this white area
to a different color)

Please note that it is not the body {background:#FFA0E0 url(../images/site-bg.gif) 0 9em repeat-x; as I have already made that change.

Thanks!!!

3 Oct 2008, 6:57 PM
#2279
jbible avatar

jbible

New Zenner

Join Date:
Apr 2008
Posts:
60
Plugin Contributions:
0

Re: Apple Zen Support Thread

More issues with IE and the dropmenu.

experimedia.net

In firefox the drop menu is perfect.
In IE 6 and 7 the drop menu does not appear at all?!

Any suggestions?

Thank you.

4 Oct 2008, 3:15 AM
#2280
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Apple Zen Support Thread

MeltDown:

I'm driving myself nuts trying to track this down...! :blink:
I would like to change the background color of this white area. (The area where it states: I want to change this white area
to a different color)

Thanks!!!

OK, I was able to finally track this down. Add the background color as shown.

#centerColumnWrapper2b {
background:#e0ffa0;
}