Re: Cherry Zen Template Support Thread
Done yet still no background. :) Should I put it BEFORE the end of content wrapper?
Quote:
Originally Posted by
jettrue
If I were you, I'd make my life easier, by removing most of the footer up into includes/templates/common/tpl_main_page.php Then you don't have to worry about background colors and such.
OPen up includes/templates/common/tpl_footer.php and remove this section:
Code:
<?php
if (!isset($flag_disable_footer) || !$flag_disable_footer) {
?>
<!--bof-navigation display -->
<div id="navSuppWrapper">
<div id="navSupp">
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<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>
<?php } ?>
</ul>
</div>
</div>
<!--eof-navigation display -->
<!--bof-ip address display -->
<?php
if (SHOW_FOOTER_IP == '1') {
?>
<div id="siteinfoIP"><?php echo TEXT_YOUR_IP_ADDRESS . ' ' . $_SERVER['REMOTE_ADDR']; ?></div>
<?php
}
?>
<!--eof-ip address display -->
<!--bof-banner #5 display -->
<?php
if (SHOW_BANNERS_GROUP_SET5 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET5)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerFive" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
?>
<!--eof-banner #5 display -->
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->
<?php
} // flag_disable_footer
?>
To the tpl_main.php. Paste it right after:
Code:
<!-- end ContentMainwrapper -->
1 Attachment(s)
Re: Cherry Zen Template Support Thread
In the attached thumbnail how can I add space between the thumbnail and the manufacturer's link or move it below the thumbnail or hide it from view (circled in read)? Also add spaces between model# weight and cost or hide model# and weight from view (circled in red)? Thanks in advance for any suggestions.
RJR
Re: Cherry Zen Template Support Thread
Hi,
How do I get the Buy Now Buttons to show on my site www.electronic-web.com/games like this site http://www.thegemtree.com/index.php?...x&cPath=17_144
Thanks,
Adam.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Adds
First of all, you're showing me two different pages, one is a zen cart category page, and one is your home page. Your home page has the "new products" and "monthly specials", and those home page boxes are not designed to have an add to cart button.
Now, if you go to a category page on your site, yours should show a "Buy Now" button as well, unless your product has attributes that the customer needs to choose, then it will have a "more info" link instead.
Here is an example of a category page on your site:
http://www.electronic-web.com/games/...ex&cPath=10_22
If you had the "login for price" function turned off, you'd probably have the "add to cart" buttons as well, if not, go to "configuration", "product listing" and turn the add to cart button on.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
RJR
In the attached thumbnail how can I add space between the thumbnail and the manufacturer's link or move it below the thumbnail or hide it from view (circled in read)? Also add spaces between model# weight and cost or hide model# and weight from view (circled in red)? Thanks in advance for any suggestions.
RJR
It looks like you figured this one out yourself. :cool:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Lovely
Done yet still no background. :) Should I put it BEFORE the end of content wrapper?
You didn't paste it IMMEDIATELY after this:
<!-- end ContentMainwrapper -->
There should be nothing between the above, and what you paste.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
adoy
What is the problem with the call for price image? It is not supposed to be a link, it is an informative image.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
It looks like you figured this one out yourself. :cool:
Thanks for replying JetTrue. I did just about 45 minutes ago in the admin area. Could not figure out how to add spacing so I chose the NO SHOW option under Admin - Configuration - Product Listings. :clap:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
ashton0603
Yes it is I to ask the same silly questions. Bare with me, please.
http://personalized2perfection.net
Need to remove the center text and have it normal again. All I did was switch templates...well had someone do. I was told to correct it by using this:
#nw {
text-align:left;
vertical-align:top;
margin:0 auto;
}
from post 933 or 932. I don't know where to place this code. Can someone tell me where to find the file to change this.
Is there a way to change the way the images are viewed? Since the new change, I have been noticing that now my images for the categories are much smaller and look distorted now. How can I make these images larger so they can be viewed?
http://personalized2perfection.net/i...ex&cPath=61_62
I have a link to us page where I display my banner. How does one display the code,showing the code and not the banner? I could only do it by removing two parts of the code and having directions on where to add the missing symbols. I notice many others have a quote box. I have tried that but it doesn't work.
How can I change the font? Can I use one font for the categories and another font for the content? Please let me know where to locate the file/folder as well.
Thank you all for being so patient with me.
Many things (including fonts) can be adjusted in the stylesheet, includes/templates/cherry_zen/css/stylesheet.css
This is where you'll REPLACE your current #nw:
Code:
#nw {
text-align:center;
vertical-align:top;
margin:0 auto;
}
with this:
Code:
#nw {
text-align:left;
vertical-align:top;
margin:0 auto;
}
You can change the image sizes in your admin, under "configuration", "images".
Quote:
Originally Posted by
ashton0603
I have a link to us page where I display my banner. How does one display the code,showing the code and not the banner? I could only do it by removing two parts of the code and having directions on where to add the missing symbols. I notice many others have a quote box. I have tried that but it doesn't work.
eh? I have no idea what you mean by the above, LOL.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
You didn't paste it IMMEDIATELY after this:
<!-- end ContentMainwrapper -->
There should be nothing between the above, and what you paste.
Ah before the < /div >. It'd be much easier if we did exactly as you say :blink: