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

Apple Zen Support Thread

Views: 855,354

Results 181 to 200 of 3,042
22 Feb 2007, 01:34
#181
tom_ace avatar

tom_ace

Zen Follower

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

Apple Zen Support Thread

Tom_Ace:

Expect for the BUTTON_ADD_SELECTED_ALT issue, I dont have tpl_modules_product_listing.php in MY_TEMPLATE but i do have it in default_template. Any idea?? :ohmy: I have already try add the tpl_modules_product_listing.php in MY_TEMPLATE and still getting the same error.

Forgot to mention that i do have this code in default_template.

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_PRODUCTS_TO_CART, BUTTON_ADD_PRODUCTS_TO_CART_ALT, 'id="submit1" name="submit1"'); ?></div>
22 Feb 2007, 01:45
#182
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

Tom_Ace:

Forgot to mention that i do have this code in default_template.

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_PRODUCTS_TO_CART, BUTTON_ADD_PRODUCTS_TO_CART_ALT, 'id="submit1" name="submit1"'); ?></div> ```

Open up includes/languages/english/button_names.php

and make sure this line is in there:

define('BUTTON_IMAGE_ADD_PRODUCTS_TO_CART','button_add_selected.gif');

In the download for apple_zen, there is a "pre-1.3.7 files" folder. In there you'll find files that you'll need to use if you aren't using 1.3.7.

22 Feb 2007, 02:22
#183
tom_ace avatar

tom_ace

Zen Follower

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

Re: Apple Zen Support Thread

Got it! Worked like charm. :D

1 more request, I looked in tpl_drop_menu.php and wanted to add "ebay" in the menu but i dont understand those drop down menu. So what do i do?

22 Feb 2007, 02:58
#184
mitchcecg avatar

mitchcecg

New Zenner

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

Re: Apple Zen Support Thread

jettrue:

Hi!

You can hardcode the phpbb forum link (without using PHP) like this:

Open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and lets say you want the forum link to show up after CONTACT US. This is what the contact us link and the following forum link would look like.

<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li> <li class="submenu"><a href="http://www.yourforumlinkhere.com/">FORUM</a></li> ```

for some reason when I do this the words shoppping cart drop down or droup down See below

Any idea what is causing this.
THANX
MITCHcecg

22 Feb 2007, 03:03
#185
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

mitchcecg:

for some reason when I do this the words shoppping cart drop down or droup down See below

Any idea what is causing this

THANX
MITCHcecg

It may be a tad too wide. Try changing the padding for "div#dropMenu li a" in includes/templates/your_template/css/stylesheet_header_menu.php. Changing the left and right to 1.8em may help the spacing, like this:

div#dropMenu li a {display: block; padding: .6em 1.8em .6em 1.8em;......

22 Feb 2007, 05:37
#186
tom_ace avatar

tom_ace

Zen Follower

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

Re: Apple Zen Support Thread

I need help on fix this logo.gif issue. When restore down, the logo.gif get scroll. How do i avoid having the scorll on the logo.gif

Also there a border at the end of header menu by the "ebay". I want it take off as it is the end of menu just like the other side by "home".

https://www.cws-mart.com

22 Feb 2007, 13:51
#187
mitchcecg avatar

mitchcecg

New Zenner

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

Re: Apple Zen Support Thread

jettrue:

It may be a tad too wide. Try changing the padding for "div#dropMenu li a" in includes/templates/your_template/css/stylesheet_header_menu.php. Changing the left and right to 1.8em may help the spacing, like this:

div#dropMenu li a {display: block; padding: .6em 1.8em .6em 1.8em;......

I have tried 1.8 and 1.6 it did not stop the drooping down.
Any other ideas would be appreciated

THANX
MITCHcecg

22 Feb 2007, 14:16
#188
mitchcecg avatar

mitchcecg

New Zenner

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

Re: Apple Zen Support Thread

:cry: Firstly I should say sorry for the droop down. It has somthing to do with the editor I was using when Front page saves the file it must cause a problem. I used notepad and made the same edit it works fine

Thanks for the help

MITCHcecg

22 Feb 2007, 23:08
#189
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

Tom_Ace:

I need help on fix this logo.gif issue. When restore down, the logo.gif get scroll. How do i avoid having the scorll on the logo.gif

Also there a border at the end of header menu by the "ebay". I want it take off as it is the end of menu just like the other side by "home".

https://www.cws-mart.com

To fix the logo gif issue, change:

#logoWrapperOuter {
	margin:0 auto;
	width:100%;
	overflow:auto;
	}

to:

#logoWrapperOuter {
	margin:0 auto;
	width:100%;
	overflow:hidden;
	}

For the ebay link, you can open up includes/templates/common/tpl_drop_menup.php and change the ebay link to (you don't need the <font color="white"></font>, it will be white anyway):

<li class="ebayLink"><a href="http://search.ebay.com/_W0QQsassZchoku_wing_starQQhtZ-1" target="_blank">EBAY</a></li>

then add this to the stylesheet_header_menu.css:

.ebayLink a {border:none!important}

22 Feb 2007, 23:31
#190
duxfield avatar

duxfield

New Zenner

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

Re: Apple Zen Support Thread

[quote=jettrue;332590]> duxfield:

Hi there,

You now have two sections of #centerColumnOuter. I meant for you to REPLACE the older #centerColumnOuter, not ADD the one above. SO remove the second one and that will fix that issue.

Can you please disable the right box totally, then I can see about that issue you mention.

Hi Jade - I have removed the second instance of #centerColumnOuter but still have those border bits left. Also, I have disabled the right box totally as you requested and now the bottom border is up under the breadcrumb bar. If you can work out what I've done wrong it would be great. Thank you. :smile:

23 Feb 2007, 00:12
#191
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

[QUOTE=duxfield;333360]> jettrue:

Hi Jade - I have removed the second instance of #centerColumnOuter but still have those border bits left. Also, I have disabled the right box totally as you requested and now the bottom border is up under the breadcrumb bar. If you can work out what I've done wrong it would be great. Thank you. :smile:

Can you be more specific about the "border bits" I'm not sure what you're referring to.

The bottom bar is not under the breadcrumb bar in firefox, i bet its an IE6 thing. Try giving your image its exact dimensions when you enter it into the define pages editor box.

23 Feb 2007, 06:34
#192
duxfield avatar

duxfield

New Zenner

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

Re: Apple Zen Support Thread

Hi Jade - I've attached a screen shot what I mean by the 'border bits' - see the top two arrows. Also I've set the html in 'define pages' so that it now contaisn the exact image dimensions but no change on the whitespace around the image (see other arrows on my attachment). Here is the html I'm using:

<html><img src="includes/templates/apple_zen/images/sixvolts_middle.jpg" width="671" height="429" border="0"></img>

Thanks alot.

23 Feb 2007, 20:54
#193
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

duxfield:

Hi Jade - I've attached a screen shot what I mean by the 'border bits' - see the top two arrows. Also I've set the html in 'define pages' so that it now contaisn the exact image dimensions but no change on the whitespace around the image (see other arrows on my attachment). Here is the html I'm using:

<html><img src="includes/templates/apple_zen/images/sixvolts_middle.jpg" width="671" height="429" border="0"></img>

Thanks alot.

This is how it should be:
<img src="includes/templates/apple_zen/images/sixvolts_middle.jpg" width="671" height="429" border="0" alt="enter some alt text here" />

That is ALL that should be in the define pages box (i think you might have a </div> there also? Make sure the above code I entered is ALL that is in the main page define editors box. Let me know how that goes.

The border bits issue is an IE only thing, I'll look into that more.

23 Feb 2007, 21:04
#194
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

duxfield:

Hi Jade - I've attached a screen shot what I mean by the 'border bits' - see the top two arrows. Also I've set the html in 'define pages' so that it now contaisn the exact image dimensions but no change on the whitespace around the image (see other arrows on my attachment). Here is the html I'm using:

<html><img src="includes/templates/apple_zen/images/sixvolts_middle.jpg" width="671" height="429" border="0"></img>

Thanks alot.

I figured out where the extra </div> was in there somewhere, you need to open up includes/templates/apple_zen/common/tpl_main_page.php and see if there is a closing div (</div) after:

<!-- eof upload alerts -->

If so, please remove it. If you look at your page source, you will see there is a </div> right after the above code, and its not supposed to be there.

24 Feb 2007, 05:44
#195
billsey avatar

billsey

New Zenner

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

Re: Apple Zen Support Thread

Just installed Apple Zen on a site I'm working on (my customer loved the look, thanks!) and I'm seeing one issue that doesn't seem to be addressed in this thread. When search_header.php is turned on, I get the search in both the header at top of the page (as I'd expect) and in the right side boxes (which I didn't expect). I'm I just expecting the wrong thing, or should the search only be in the top border?

The test site is here. :huh:

24 Feb 2007, 14:30
#196
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

Billsey:

Just installed Apple Zen on a site I'm working on (my customer loved the look, thanks!) and I'm seeing one issue that doesn't seem to be addressed in this thread. When search_header.php is turned on, I get the search in both the header at top of the page (as I'd expect) and in the right side boxes (which I didn't expect). I'm I just expecting the wrong thing, or should the search only be in the top border?

The test site is here. :huh:

You may have both search_header.php turned on, and search.php. OR when you turn on search_header.php, make sure the left/right status is OFF and only the single column status is on.

24 Feb 2007, 15:21
#197
terrill_taylor avatar

terrill_taylor

New Zenner

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

Re: Apple Zen Support Thread

Hi --

Thank you for contributing this fantastic template, and for suporting it here. I would like to "buy you a cup of coffee" if you like to PM or post your paypal e-mail. :)

My question is; how to remove or change the gray stripe that appears above the breadcrumb nav? Seems simple, but I can't seem to find it. :)

http://www.banberryplace.com/NewZen

24 Feb 2007, 15:35
#198
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

Terrill_Taylor:

Hi --

Thank you for contributing this fantastic template, and for suporting it here. I would like to "buy you a cup of coffee" if you like to PM or post your paypal e-mail. :)

My question is; how to remove or change the gray stripe that appears above the breadcrumb nav? Seems simple, but I can't seem to find it. :)

http://www.banberryplace.com/NewZen

Hi there!

Thanks for the compliment, and the offer. I don't expect contributions, but if you really want to :happy: my paypal personal account is jade @ jadetrue.com.

The grey bar is found in #centerColumnOuter.

First, remove this section:
#centerColumnOuter {
background:url(../images/headerborder.gif) repeat-y;
}

Then find the second #centerColumnOuter section, and CHANGE it to this:

#centerColumnOuter {
margin:-.1em .5em 0 .5em;
width:70em;
position:relative;
clear:both;
}

24 Feb 2007, 16:14
#199
terrill_taylor avatar

terrill_taylor

New Zenner

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

Re: Apple Zen Support Thread

jettrue:

Hi there!

Thanks for the compliment, and the offer. I don't expect contributions, but if you really want to :happy: my paypal personal account is jade @ jadetrue.com.

The grey bar is found in #centerColumnOuter.

First, remove this section:
#centerColumnOuter {
background:url(../images/headerborder.gif) repeat-y;
}

Then find the second #centerColumnOuter section, and CHANGE it to this:

#centerColumnOuter {
margin:-.1em .5em 0 .5em;
width:70em;
position:relative;
clear:both;
}
Thanks! :)

24 Feb 2007, 17:49
#200
billsey avatar

billsey

New Zenner

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

Re: Apple Zen Support Thread

jettrue:

You may have both search_header.php turned on, and search.php. OR when you turn on search_header.php, make sure the left/right status is OFF and only the single column status is on.

That did it, I'd turned on left column instead of one column. :blush: I guess I should do that with all the side boxes, right?