Page 249 of 305 FirstFirst ... 149199239247248249250251259299 ... LastLast
Results 2,481 to 2,490 of 3042
  1. #2481
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by hedron View Post
    Hi Jade,

    What faux padding? In there I have this:  | 

    However on the site it shows up like this:
    Code:
    Home      |  About Us  |  Contact Us
    A bunch of padding after home, and 2 spaces before and after the separator instead of one. I am just wondering what generates the extra spaces and the padding...
    Ok, I see. This is an issue with zen cart. If you want to fix this, you'll need to open up includes/templates/template_default/templates/tpl_ezpages_bar_footer.php and change this:

    Code:
    <a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
    to this:
    Code:
     <li><a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a></li>
    Then be sure to save it in your includes/templates/apple_zen/templates/ folder.

    Then open up includes/templates/apple_zen/common/tpl_footer.php and change this:
    Code:
    <li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
    to this:

    Code:
    <?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>

    Quote Originally Posted by hedron View Post
    That code does not work.
    It did work when I tested it on your site in Firefox, but you have this added in your tpl_product_info_display.php right before the add to cart box:
    <div style="float:left">

    That is not standard in zen cart or my template. You need to remove that as well as the closing </div> for that.


    Quote Originally Posted by hedron View Post
    More clarifications:
    - Since I removed breadcrumbs on the Home page, the side boxes move up. Any way to keep that consistent? How do I move it down at Home, or up everywhere else?
    Personally, I don't see the need for this, but you can force a green "bar" to be on the home page by changing this in stylesheet.css to this:
    Code:
    #centerColumnOuter {background:url(../images/headerborder.gif) repeat-y;}
    to this:

    Code:
    #centerColumnOuter {background:url(../images/headerborder.gif) repeat-y;border-bottom:25px solid #BBD17E}
    Quote Originally Posted by hedron View Post

    - While your template should work fine with v1.3.9 (right?), are you planning to update it for v2.0?
    yes

    Quote Originally Posted by hedron View Post
    - Do you recommend any other useful modifications for a site like the one I am working on (http://www.saleyla.com)?
    I almost always install Ultimate SEO module, but that's a personal preference. I find the site then does better in search engines. But don't say that too loud here, people get upset.

  2. #2482
    Join Date
    Dec 2008
    Posts
    13
    Plugin Contributions
    0

    Default Change or remove drop down menu

    Is it possible to turn off the drop down menu (or just some of it) on SOME pages but not all pages? Like you can turn the side boxes of on some pages.

    Thanks!

    Corina Crane

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

    Default Re: Change or remove drop down menu

    Quote Originally Posted by Corina View Post
    Is it possible to turn off the drop down menu (or just some of it) on SOME pages but not all pages? Like you can turn the side boxes of on some pages.

    Thanks!

    Corina Crane
    View the source of the page you want it to be off.

    Look for the body id of the page. For example, the body of the home page is this:

    <body id="indexHomeBody">

    In the css, you would add:

    #indexHomeBody #dropMenuWrapper {display:none;}

    You can use the above code, just replace indexHomeBody with the id of the page needed.

  4. #2484
    Join Date
    Dec 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Change or remove drop down menu

    Quote Originally Posted by jettrue View Post
    View the source of the page you want it to be off.

    Look for the body id of the page. For example, the body of the home page is this:

    <body id="indexHomeBody">

    In the css, you would add:

    #indexHomeBody #dropMenuWrapper {display:none;}

    You can use the above code, just replace indexHomeBody with the id of the page needed.
    Thanks, that's great! and easy :) but I wasn't expecting to lose the stripe that was behind it. Anyway to keep the stripe?

    Corina

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

    Default Re: Change or remove drop down menu

    Quote Originally Posted by Corina View Post
    Thanks, that's great! and easy :) but I wasn't expecting to lose the stripe that was behind it. Anyway to keep the stripe?

    Corina
    Try this (not tested)
    #indexHomebody #dropMenu ul {display:none;}

  6. #2486
    Join Date
    Dec 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Change or remove drop down menu

    Quote Originally Posted by jettrue View Post
    Try this (not tested)
    #indexHomebody #dropMenu ul {display:none;}
    Beautiful! works great! Thanks

  7. #2487
    Join Date
    Dec 2006
    Posts
    133
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Sorry that I am just now getting back to you about my footer. I've been sick since the 12th with the flu and just now getting back to this. I got it fixed...sort of. I've added a background and no matter what it is hard to read. Can you take a peak and look at the 2 things that are still the original color. I don't know how to change just those now. Also is there a way to make those lines bold so they aren't as hard to read?

    http://www.customcuteness.com/store

    Thanks again for your help.

  8. #2488
    Join Date
    Feb 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    hi jade..
    could you help me..
    i want to have all my sidebox at the right column, outside the contentMainWrapper.. but still the right column is in the right side

    thanks....

  9. #2489
    Join Date
    Feb 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    sorry jade..
    my site is http://hope.or.id/store/index.php
    really appreacite your help..

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by romyloice View Post
    hi jade..
    could you help me..
    i want to have all my sidebox at the right column, outside the contentMainWrapper.. but still the right column is in the right side

    thanks....
    Did you mean to say, in the left column? Are you talking about that grey box?

 

 

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