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

Apple Zen Support Thread

Views: 855,582

Results 941 to 960 of 3,042
27 Jun 2007, 2:10 PM
#941
high2k avatar

high2k

Zen Follower

Join Date:
May 2006
Location:
Scotland
Posts:
198
Plugin Contributions:
0

Apple Zen Support Thread

Hi Jettrue,

I'm back with more questions I'm afraid!
I'm wondering if you can tell me how I get the back and submit buttons to align on my contact page as they're a bit squiffy.
http://www.keela.co.uk/catalog/index.php?main_page=contact_us

27 Jun 2007, 5:39 PM
#942
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

high2K:

Hi Jettrue,

I'm back with more questions I'm afraid!
I'm wondering if you can tell me how I get the back and submit buttons to align on my contact page as they're a bit squiffy.
http://www.keela.co.uk/catalog/index.php?main_page=contact_us

It's because of the margin on the INPUT tag. The send button is an "input" button, whereas the back button is just an image with a link.

so you can tell that specific input button not to have a top and bottom margin:

#contactUsDefault .buttonRow input {margin:0 .5em;}

28 Jun 2007, 6:44 AM
#943
debeaujeu avatar

debeaujeu

New Zenner

Join Date:
Aug 2006
Location:
Kirkland, WA
Posts:
82
Plugin Contributions:
1

Re: Apple Zen Support Thread

jettrue:

Unfortunately, you can't z-index flash. But I did a search for z-index and flash on this forum, and found this idea (read the optimism section, LOL):

http://www.zen-cart.com/forum/showpost.php?p=119649&postcount=4

Jettrue:
Thank you so much for the info on the use of the z-index and flash files.
You are a technical virtuoso of immense proportion.

The Apple Zen pull-down menu opens over the flash image as it should. It works just fine.
The secret is to make the flash object transparent with:
“<param value="transparent" name="wmode" / >”.

deBeaujeu

28 Jun 2007, 7:34 PM
#944
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi Jade,

First of all let me say that your template and the support has been awesome... I just spent 6 hours going through each of the posts ( each of the almost 950 posts ) and I learnt a lot! ... if theres any way I can contribute, I would love to ( anything involving graphics, video and audio!... I tend to stay away from the programming lol )

My main issue is the categories that show up on top of the drop down menus, I got a lot of categories and I would rather turn that feature off... your posts mention that I need to turn off **Categories-Tabs Menu ON/OFF , **but any changes there dont reflect the display of categories ( https://www.pavs.biz/showcase )... any other way to turn it off?

Other small issue was the gap below the logo... and any idea on how CENTER the categories to the middle horizontally? & to put icons next to categories in drop down menu, like small arrowheads. I am sure if I browse the forum I'll come up with solutions to these but I just cannot figure out how to turn off the categories ( I am sure it will be a small one-line change and then i'll feel really dumb lol )

Thanks again for the great work here Jade.

Cheers,

Nrupesh

EDIT : I SWEAR to god that I posted this reply before ALEX did...even the timestamp shows that I posted it earlier lol ( Maybe its coz I am posting from china? )

28 Jun 2007, 8:11 PM
#945
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

alexpoland:

Hi How Delete a Categories from Header

If you mean you want to remove a specific category from the drop down menu, you can do that by following the instructions here:

http://www.zen-cart.com/forum/showpost.php?p=344544&postcount=61

28 Jun 2007, 8:24 PM
#946
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

nrupesh:

Hi Jade,
My main issue is the categories that show up on top of the drop down menus, I got a lot of categories and I would rather turn that feature off... your posts mention that I need to turn off **Categories-Tabs Menu ON/OFF , **but any changes there dont reflect the display of categories ( https://www.pavs.biz/showcase )... any other way to turn it off?

That's the way to turn it off, and I just tested it, so there must be a problem with the code that tells it to check and see if its set to on or off. First, double check that its set to "0", and if so, then open up includes/templates/YOUR_TEMPLATE/templates/tpl_modules_categories_tabs.php
and make sure it looks like this:

<?php
/**
 * Module Template - categories_tabs
 *
 * Template stub used to display categories-tabs output
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_modules_categories_tabs.php 3395 2006-04-08 21:13:00Z ajeh $
 */

  include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_CATEGORIES_TABS));
?>
<?php if (CATEGORIES_TABS_STATUS == '1' && sizeof($links_list) >= 1) { ?>
<div id="navCatTabsWrapper">
<div id="navCatTabs">
<ul>
<?php for ($i=0, $n=sizeof($links_list); $i<$n; $i++) { ?>
  <li><?php echo $links_list[$i];?></li>
<?php } ?>
</ul>
</div>
</div>
<?php } ?>

nrupesh:

Other small issue was the gap below the logo...

That is the ezpages section. Make sure that is off in the admin:
"Configuration", "Ezpages Settings", "EZ-Pages Display Status - HeaderBar".

nrupesh:

and any idea on how CENTER the categories to the middle horizontally?

Not sure what you mean by the above.

nrupesh:

& to put icons next to categories in drop down menu, like small arrowheads.

If you open up includes/templates/YOUR_TEMPLATE/css/stylesheet_header_menu.css, there is a section for little arrowheads for items with submenus already, you just need to uncomment that section:

/*div#dropMenu li.submenu li.submenu {background: url(../images/submenu.gif) 95% 50% no-repeat;} */

Hope that helps!

28 Jun 2007, 8:38 PM
#947
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

includes/templates/YOUR_TEMPLATE/templates/tpl_modules_categories_tabs.php? There is no file called tpl_modules_categories_tabs.php under that folder...I guess u meant some other folder.

I'll try for the other suggestions, thanks!

What I meant by "and any idea on how CENTER the categories to the middle horizontally?" was that right now the whole line is left aligned and that leaves a gap on the right side after the last section... I want even gaps on either side... I guess its just my viewpoint, I need everything perfectly aligned lol

Thanks again for the help Jade, I believe a great support like this has to be made worth the effort and if you are accepting contributions then do let me know, I am sure a lot of people on this thread would be more than happy to join in!

Nrupesh

28 Jun 2007, 8:59 PM
#948
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

Nevermind... just realised that my host had some problem in setting up the zencart I guess, since when I edited the file with contents u gave me, it worked like a charm!! Thanks again for pointing me to right direction. Just got to figure out a way to center the bar under the logo.

Cheers

Nrupesh

29 Jun 2007, 2:10 AM
#949
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

nrupesh:

Nevermind... just realised that my host had some problem in setting up the zencart I guess, since when I edited the file with contents u gave me, it worked like a charm!! Thanks again for pointing me to right direction. Just got to figure out a way to center the bar under the logo.

Cheers

Nrupesh

Ah, I see... common request. See this post in the header menu thread:

http://www.zen-cart.com/forum/showpost.php?p=390897&postcount=332

29 Jun 2007, 3:19 AM
#950
hllight avatar

hllight

Zen Follower

Join Date:
May 2007
Location:
Port Charlotte, FL
Posts:
125
Plugin Contributions:
0

Re: Apple Zen Support Thread

Has anyone successfuly installed a spanish pack and if so can you please tell me where you got the pack and any problems you encountered?
There seems to be very little discussion on the subject. Thanks in advance.

29 Jun 2007, 6:05 AM
#951
high2k avatar

high2k

Zen Follower

Join Date:
May 2006
Location:
Scotland
Posts:
198
Plugin Contributions:
0

Re: Apple Zen Support Thread

I have altered the title of the 'information' box to 'our world' and now want to change the order of the ezpages that appear in the drop down menu. I have set the order under heading in admin>tools>ezpages but still find that they appear in alphabetical order. I had a look at the FAQ that is mentioned in this thread, but that doesn't seem to apply to what I'm doing.
See http://www.keela.co.uk/catalog/

29 Jun 2007, 9:40 AM
#952
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi again... Most of the issues sorted out and I got a few more tweaks done :)

Was wondering how I can get the shadows to the left of the sideboxes... something like http://www.ejpshop.com/shop/index.php ... couldnt figure out!

Thanks again

Nrupesh

29 Jun 2007, 11:41 AM
#953
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

high2K:

I have altered the title of the 'information' box to 'our world' and now want to change the order of the ezpages that appear in the drop down menu. I have set the order under heading in admin>tools>ezpages but still find that they appear in alphabetical order. I had a look at the FAQ that is mentioned in this thread, but that doesn't seem to apply to what I'm doing.
See http://www.keela.co.uk/catalog/

That is due to an error by me that i need to fix. Open up includes/modules/sideboxes/apple_zen/ezpages_drop_menu.php

Change line 23 from:

$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by sidebox_sort_order, pages_title");

to:

$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by header_sort_order, pages_title");

I incorrectly had the "sidebox_sort_order" instead of the "header_sort_order".

29 Jun 2007, 11:42 AM
#954
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

hllight:

Has anyone successfuly installed a spanish pack and if so can you please tell me where you got the pack and any problems you encountered?
There seems to be very little discussion on the subject. Thanks in advance.

That would probably be a better question for a general forum post? I don't really know much about using different language packs.

29 Jun 2007, 11:58 AM
#955
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

nrupesh:

Hi again... Most of the issues sorted out and I got a few more tweaks done :)

Was wondering how I can get the shadows to the left of the sideboxes... something like http://www.ejpshop.com/shop/index.php ... couldnt figure out!

Thanks again

Nrupesh

Looks like they added that shadow into the includes/templates/apple_zen/images/content_bg.gif

29 Jun 2007, 11:58 AM
#956
high2k avatar

high2k

Zen Follower

Join Date:
May 2006
Location:
Scotland
Posts:
198
Plugin Contributions:
0

Re: Apple Zen Support Thread

I incorrectly had the "sidebox_sort_order" instead of the "header_sort_order".[/QUOTE]

Thanks. That did the trick:clap:

29 Jun 2007, 12:08 PM
#957
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

I tried that, didnt work... I also saw the content_bg.gif and its plain white without any shadow. Any other clues that might help? Thanks a lot!

Nrupesh

29 Jun 2007, 12:42 PM
#958
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Apple Zen Support Thread

My site looks fine in IE but in Firefox all of my content is set completely off the page to the right. The only thing that shows on without scrolling is the header and the logo. Any ideas?

29 Jun 2007, 1:30 PM
#959
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi again... I tried to change some links in the dropdown, I figured most of its working and adding links.. only thing I cant figure out is that if I add a static link as the main button then its not showing as link and different color/alignment, I guess I have to apply some class to that li?

Thanks!

29 Jun 2007, 2:05 PM
#960
nrupesh avatar

nrupesh

New Zenner

Join Date:
Jun 2007
Posts:
15
Plugin Contributions:
0

Re: Apple Zen Support Thread

nrupesh:

Hi again... I tried to change some links in the dropdown, I figured most of its working and adding links.. only thing I cant figure out is that if I add a static link as the main button then its not showing as link and different color/alignment, I guess I have to apply some class to that li?

Thanks!

Nevermind I spent a couple of hours and figured it out!! :D Feels good to get things done by myself lol

Still trying the Shadow issue, not a priority though.