Re: Apple Zen Support Thread
Quote:
Originally Posted by
organicplanet
Everybody and their gramma seems to make this mistake, LOL. You changed this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {float:left;}
to this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {text-align: center;}
If you only wanted the LOGO to change, you should seperate the logo out, so that you don't change 5 other things at the same time:
Code:
#logo {text-align:center;}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {float:left;}
Quote:
Originally Posted by
organicplanet
3) Finally, in the right hand side boxes, the "Catagory drop-down" feature is squished. How do I unsquish it?
Try adding this to your stylesheet:
Code:
.sideBoxContent select {margin:0; padding:0;width:150px;}
Re: Apple Zen Support Thread
Quote:
Originally Posted by
CandyCherub
Thanks for all your support. I am progressing with the template. When I view the product description page in IE7, it displays nicely but is misaligned in Firefox. The checkboxes and radio buttons appear to the left of the image as
shown
On the checkout success page, I noticed that the Navigation bar started around the middle of the page and to the right of the page.
I would appreaciate your advices on how to make corrections.
Thanks
For the checkboxes. How are they in IE, and how do you want them to be? Below the images?
As for the checkout success page, this doesn't happen in my test site, re-upload the original includes/templates/apple_zen/templates/tpl_checkout_success_default.php
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jettrue
For the checkboxes. How are they in IE, and how do you want them to be? Below the images?
As for the checkout success page, this doesn't happen in my test site, re-upload the original includes/templates/apple_zen/templates/tpl_checkout_success_default.php
Thank Jade!
You truly are the best...worked like a charm!
Now I gotta go fix my pix so they don't show up in microscopic mode...but I believe that's another thread...
You Rock Jade!
Thanks again,
Jane
Organic Planet Coffee & Tea
Re: Apple Zen Support Thread
Hello Jade,
Have you come across this problem relating to Apple Zen and Image Handler 2. I have an odd problem. The IH2 Script seems to work but the mouse-over image displays at the top of the page. Actually it pushes the page down when it displays and when you scroll back to the top you can see the blank white row across the top. I am not sure if I explained it well enough but you can see what I mean here.
http://www.art-supplies-plus.com/catalog/
Your Help would be greatly appreciated.
Thanks for your help.
Scotty
Re: Apple Zen Support Thread
Ok,
Three new issues...
First off how do you edit the order of the "Information" Drop down menu. I also have a few menu items repeated like "Privacy Policy," and "Site Map"
I tried the editing of the information.php file and changed the order in the righ sidebox, but the sidebox and dropdown info boxes I guess are not communicating today...
btw the link is http://www.organicplanetonline.com/zencart/
Ok question 2...
Is there a way to have my catagory pix for my coffee catagory display all 4 images in one row. If it's just a pix size issue I know how to fix that. Here is the link to the page i'm talking about.
http://www.organicplanetonline.com/z...index&cPath=66
Final question...
In my "Tea Catagory"
http://www.organicplanetonline.com/z...index&cPath=67
The pix on the left is off all by itself while the two on the right are smooshed together. I know the pix are not all the same size, but is there a way to make them display with equal padding between them?
Ok that's all for now.
Thanks so much for all the help.
Jane
Organic Planet Coffee & Tea
Re: Apple Zen Support Thread
Quote:
Originally Posted by
scottcom
Hello Jade,
Have you come across this problem relating to Apple Zen and Image Handler 2. I have an odd problem. The IH2 Script seems to work but the mouse-over image displays at the top of the page. Actually it pushes the page down when it displays and when you scroll back to the top you can see the blank white row across the top. I am not sure if I explained it well enough but you can see what I mean here.
http://www.art-supplies-plus.com/catalog/
Your Help would be greatly appreciated.
Thanks for your help.
Scotty
Hi,
Check your install of IH again.
You need to put the files from includes>templates\template_custom in includes/templates/apple_zen.
:smile:
Ronald.
Re: Gift Certificate FAQ need linked to information
Hi
I my gift certificates are installed and working but their is no link for the FAQ I have tried to edit the tpl_drop_menu.php but the link works fine but it reads on the drop down menu as: HEADER_TITLE_GIFT_VOUCHER_FAQ in the drop down menu.
Below is my code
<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_EZPAGES, 'id=4&chapter=4') ?>">INFORMATION</a>
<ul class="level2">
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_SHIPPING); ?>"><?php echo HEADER_TITLE_SHIPPING_INFO; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_PRIVACY); ?>"><?php echo HEADER_TITLE_PRIVACY_POLICY; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ); ?>"><?php echo HEADER_TITLE_GIFT_VOUCHER_FAQ; ?></a></li>
<?php if (defined('FILENAME_SITE_MAP')) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
<?php } ?>
<?php if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
<?php } ?>
</ul>
</li>
Any help guys thanks in advanced
Re: Gift Certificate FAQ need linked to information
Quote:
Originally Posted by
Candylea
Hi
I my gift certificates are installed and working but their is no link for the FAQ I have tried to edit the tpl_drop_menu.php but the link works fine but it reads on the drop down menu as: HEADER_TITLE_GIFT_VOUCHER_FAQ in the drop down menu.
Below is my code
<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_EZPAGES, 'id=4&chapter=4') ?>">INFORMATION</a>
<ul class="level2">
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_SHIPPING); ?>"><?php echo HEADER_TITLE_SHIPPING_INFO; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_PRIVACY); ?>"><?php echo HEADER_TITLE_PRIVACY_POLICY; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ); ?>"><?php echo HEADER_TITLE_GIFT_VOUCHER_FAQ; ?></a></li>
<?php if (defined('FILENAME_SITE_MAP')) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
<?php } ?>
<?php if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
<?php } ?>
</ul>
</li>
Any help guys thanks in advanced
Change
HEADER_TITLE_GIFT_VOUCHER_FAQ
back to
HEADER_TITLE_GV_FAQ
Re: Apple Zen Support Thread
Thanks so much for an awesome template! Apple Zen is by far one template that has saved many of our butts. If you're curious about how I've modified it you can see an example at both http://www.saltwaterearth.com and http://www.bestcomicbookstore.com . :clap:
Re: Gift Certificate FAQ need linked to information
Thank you so much, Still try and work out how you find the time to help everyone