Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
RJR
Thanks a lot, I still don't know how to correct the errors shown here.
line 238 column 24 - Warning: <a> attribute "href" lacks value
<ul class="level1"><li><a href=""> </a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=specials&zenid=c723e32a8971fac31fff3c9836e31485">Special s ...</a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=products_new&zenid=c723e32a8971fac31fff3c9836e31485">New Products ...</a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=featured_products&zenid=c723e32a8971fac31fff3c9836e31485 ">Featured Products ...</a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=products_all&zenid=c723e32a8971fac31fff3c9836e31485">All Products ...</a></li></ul></div></div>
line 63 column 7 - Warning: missing </div>
<div id="contentMainWrapper">
located: /includes/templates/cherry_zen/common/tpl_main_page.php
<div id="contentMainWrapper">
<div id="contentMainWrapperb">
<div class="outer">
<div class="inner">
<div class="float-wrap">
<div id="content">
<div class="contentWrap">
do I put a </div> after each line are at the end of the last one?
Re: Cherry Zen Template Support Thread
Thank you so much for helping me with those 3 issues. I have gone ahead and made the left and right column different widths and used different background images to fit. I will change colors later to something nice but for now I am using rather loud colors so I can see what I am doing.
Demo site: http://www.swiker.com/demo
I am sorry for the huge picture I had posted. I forget at times my screen is set for 1680 x 1050 and so my pics are very large. I will try to remember.
Thanks again.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
My turn to help. :smile:
I added this code:
Code:
<!--bof-view cart and checkout now links-->
<div id="your new div">
<ul class="forward">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> |
<a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a>
<?php }?>
</ul>
</div>
<!--eof-view cart and checkout now links-->
to the tpl_ezpages_bar_header and got the links to appear! :clap:
But it did push the side columns down a bit leaving a gap. Do you know what in my code is causing that and how to fix it?
Thanks.
Hello
I liked how your home page look, Can you tell me how did u do the blue buttons in the header? I want to have similar buttons on my page.
How did you insert the picture of dog on the home page? The veryfied links in the header?
Sorry too many qustions just trying to learn.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
FatGuyinAZ
Thank you so much for helping me with those 3 issues. I have gone ahead and made the left and right column different widths and used different background images to fit. I will change colors later to something nice but for now I am using rather loud colors so I can see what I am doing.
Demo site:
http://www.swiker.com/demo
I am sorry for the huge picture I had posted. I forget at times my screen is set for 1680 x 1050 and so my pics are very large. I will try to remember.
Thanks again.
I just took a look at the site in your signiture and you still have theis message there "Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution."
Did you think about taking that off your site, It will look better.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Sorry, I didn't fully understand the issue.
Add this to your css:
Code:
#linksboxContent select {margin:.2em 0;padding:0;width:160px!important;float:left}
Thanks Jade that worked.
Re: Cherry Zen Template Support Thread
Thank you. The blue buttons are from the Cherry Zen template. I just rounded them off and changed the bottom color for the rollover effect.
An image can be inserted on the main page using the tools>define page editor>main_page. And I inserted the verified links into the tpl_header...
I don't pretend to know much about css. I just ask a lot of questions and get a lot of help from the great folks here on the forum.
:smile:
Quote:
Hello
I liked how your home page look, Can you tell me how did u do the blue buttons in the header? I want to have similar buttons on my page.
How did you insert the picture of dog on the home page? The veryfied links in the header?
Sorry too many qustions just trying to learn.
##############################___
Your one stop for all your fashion needs!
Pumps, Sandals, Heels, Boots, Sunglasses and much more!
www.glamorousshoe.com
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Thank you. The blue buttons are from the Cherry Zen template. I just rounded them off and changed the bottom color for the rollover effect.
An image can be inserted on the main page using the tools>define page editor>main_page. And I inserted the verified links into the tpl_header...
I don't pretend to know much about css. I just ask a lot of questions and get a lot of help from the great folks here on the forum.
:smile:
How did you change the name and the landing page link?
Re: Cherry Zen Template Support Thread
Iam trying to set the date added , quanity in stock and model number off" So I go in the admin panel under New Listing and set these to 0, then under featured and set them to 0.
But they still show up on the site.
Also I can't get anything to show up in the footer. I go into Ez pages and Choose the footer but it don't work, It does work in the hearder though.
I don't want the quanity number to show up next each categories in the Sidebox?
Anyone Help!!!
www.homedecoronline.net
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Hi!
open up includes/templates/cherry_zen/common/tpl_columnar_display.php and change this chunk:
Code:
$r_params = str_replace("50", "98", $r_params);
$r_params = str_replace("33", "98", $r_params);
$col_width = str_replace("50", "48", $col_width);
$col_width = str_replace("33", "31", $col_width);
to this:
Code:
$r_params = str_replace("50", "98", $r_params);
$r_params = str_replace("33", "98", $r_params);
$r_params = str_replace("25", "98", $r_params);
$col_width = str_replace("50", "48", $col_width);
$col_width = str_replace("33", "31", $col_width);
$col_width = str_replace("25", "23", $col_width);
Thank you very much!!! Jade. It works!!!
Re: Cherry Zen Template Support Thread
Hi, Jade, One more problem. When I tried to click on subcategory, the page doesn't display properly. Please see the page. http://coolbuydirect.com/c/index.php...ex&cPath=65_90
Can you help me on this too? Thank you!!