Page 58 of 305 FirstFirst ... 848565758596068108158 ... LastLast
Results 571 to 580 of 3042
  1. #571
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    The site looks fine, except there's not much on the home page. What would you like to show there?

    It also looks like you have un-needed HTML in your center content section,

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
        <title>Untitled Page</title>
    </head>
    <body>
        <span style="font-size: 24pt; color: #e4006c; font-family: Monotype Corsiva">Mommy and
            Baby Essentials<br />
     
            <br />
            We know both pregnancy and baby are true blessings!</span>
     
    </body>
    </html>
    Go to "Tools", "Define Pages Editor", choose define_main_page.php and make sure only:
    <span style="font-size: 24pt; color: #e4006c; font-family: Monotype Corsiva">Mommy and
    Baby Essentials<br />

    <br />
    We know both pregnancy and baby are true blessings!</span>

    is there.
    Is the g in pregnancy cut off by my logos? Just wondering it is on my screen? If it is, where is css do I fix it? Thanks.

  2. #572
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by Terrill_Taylor View Post

    It does display without the overlap when changed back to repeat-x...

    Thanks.
    Try giving logoWrapperOuter a height.

    height:9em;

  3. #573
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by axip View Post
    Hey could you please help me out too?

    http://www.zen-cart.com/forum/showpo...&postcount=565
    You could try adding the middle image as a background image of #logoWrapperOuter

  4. #574
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by helpme View Post
    Is the g in pregnancy cut off by my logos? Just wondering it is on my screen? If it is, where is css do I fix it? Thanks.
    You have some css for that text in the Define Pages editor section. I would change that css to this (and maybe go a tad smaller on the font) :

    <span style="font-size: 24pt; color: rgb(228, 0, 108); font-family: Monotype Corsiva;line-height:1.2;">

  5. #575
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Discount Coupon & Conditions Of Use

    Quote Originally Posted by craigkendall View Post
    I turned off the setting which, if I understand it correctly, should have made the links to the Discount Coupons and the Conditions of Use pages disappear from the main dropdown menu, but they both seem to persist.

    Any suggestions?
    Hi,

    Actually, I did not have that coded to turn off automatically. But I'll do that in the next update. For now, you can open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and change;

    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>

    to

    Code:
    		  <?php if (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') { ?>
              <li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
    		  <?php } ?>

  6. #576
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by chadderuski View Post
    Hi All!

    I don't want to say I solved this, but I am well on my way. Of course, for our Company's site I did some trimming ... ;)

    I worked in three main files: stylesheet.css, stylesheet_header_menu.css and apple_zen/common/tpl_main_page.php

    The side shadows are achieved by layering two div and setting their background to the left or right shadow. I put these after the <contentMainWrapper> and set them to 71em. I then adjusted (through MUCH trial and error) the containing divs to either 100% or 70em. Adjusting padding to taste, etc.

    Make your life easier and turn off the header until you get the main page working. Fixing the header is simple after that.

    Also, if you want your footer to be enclosed this box, this is where you do it.

    It was neither THAT simple or that hard. Take your time. Change one thing and test it.

    One of the things I really love about apple_zen is it's zoom-in/zoom-out strength without breaking layout. The stretchy header is also cool for some site designs.

    I am no CSS guru, so I don't know if there is a way to make a single template do both. At least not easily. Perhaps a second template with a different name for the enclosed header? Orange_Zen? Grape_Zen? LOL. I'm sure Jade will come up with something awesome!

    Please take a look at my test site and tell me what you think ...

    http://royalindustriesinc.com/store/index.php

    -Chadd
    It looks really good Chadd. Good job!

  7. #577
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by satya View Post
    also, the shadowAlpha_bot.png doesn't seem to look transparent on a dark background the way that shadowLeft.png and shadowRight.png do.



    ps. where's your donation box? this template is well worth the support.
    Hi There!

    I've updated the template, and the new version should no longer have this issue with the bottom shadowAlpha_bot.png. The stylesheet.css is the only file you have to adjust to correct this issue. However, as will all of my template updates there are various tweaks in the css because I'm a perfectionist, and I always find things to adjust.

    Also, this new update addresses one of the changes in the recent XSS Vulnerability fix for zen cart. Everyone should go to the link above and apply the rest of the fixes; my template only uses includes/templates/apple_zen/templates/tpl_checkout_confirmation_default.php, and there are more files that need updates.


    I've also made updates to includes/templates/apple_zen/common/tpl_drop_menu.php, so that if you have Discount Coupons Module turned off in your admin, it will no longer show up in the Information Drop Down Menu.

  8. #578
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by chadderuski View Post
    I worked in three main files: stylesheet.css, stylesheet_header_menu.css and apple_zen/common/tpl_main_page.php

    The side shadows are achieved by layering two div and setting their background to the left or right shadow. I put these after the <contentMainWrapper> and set them to 71em. I then adjusted (through MUCH trial and error) the containing divs to either 100% or 70em. Adjusting padding to taste, etc.
    I really like this, can you post the changes in the 2 css and php files? For those of us who don't know much about writing this stuff!!

    I've been trying to figure out how to do something like this. Thanks for your help.

  9. #579
    Join Date
    May 2007
    Posts
    31
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Like everyone else I think this template is great!

    If I have a store with only 3 product categories (each category has a number of sub categories) Can I have each category listed as a drop down meno on the top rather than just one categorey box?

    I apologize if this has been covered but I couldnt find this searching

    thanks!

  10. #580
    Join Date
    May 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    I soooooo new to zencart! I love the apple and am trying to install it on my site. I installed all the My_template files etc. But I am unsure how I upload the apple zen files.
    Any help would be so greatly appreciated

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR