Re: Apple Zen Support Thread
Quote:
Originally Posted by
hedron
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
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
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
- While your template should work fine with v1.3.9 (right?), are you planning to update it for v2.0? :smile:
yes
Quote:
Originally Posted by
hedron
- 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. :cool:
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
Re: Change or remove drop down menu
Quote:
Originally Posted by
Corina
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.
Re: Change or remove drop down menu
Quote:
Originally Posted by
jettrue
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
Re: Change or remove drop down menu
Quote:
Originally Posted by
Corina
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;}
Re: Change or remove drop down menu
Quote:
Originally Posted by
jettrue
Try this (not tested)
#indexHomebody #dropMenu ul {display:none;}
Beautiful! works great! Thanks
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.
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..:blink:..
Re: Apple Zen Support Thread
sorry jade..
my site is http://hope.or.id/store/index.php
really appreacite your help..:hug:
Re: Apple Zen Support Thread
Quote:
Originally Posted by
romyloice
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..:blink:..
Did you mean to say, in the left column? Are you talking about that grey box?