Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
weezee
Can someone help me with this please, i'm not very good at codes. When I try to add a </div> the left sideboxes all move to the middle of the page and the right move to the bottom. These are the errors warnings and lines before and after them.
line 63 column 7 - Warning: missing </div>
61 <!--eof-header ezpage links-->
62 </div>
63 <div id="contentMainWrapper">
64 <div id="contentMainWrapperb">
65 <div class="outer">
66 <div class="inner">
67 <div class="float-wrap">
68 <div id="content">
69 <div class="contentWrap">
70 <!-- bof breadcrumb -->
71 <div id="navBreadCrumb">Home
72 </div>
Please post your link to your site with each question, so I don't have to go searching for it.
Just because the warning tells you its at a certain line, doesn't mean you can open a file and find that specific line. Your missing closing </div> is in the links sidebox. Check the sidebox files related to that to find where its missing.
Quote:
Originally Posted by
weezee
line 238 column 24 - Warning: <a> attribute "href" lacks value
238 <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=4f11ae0bd80d1a4c1f1d20593560d32c">Special s ...</a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=products_new&zenid=4f11ae0bd80d1a4c1f1d20593560d32c">New Products ...</a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=featured_products&zenid=4f11ae0bd80d1a4c1f1d20593560d32c ">Featured Products ...</a></li></ul><ul class="level1"><li><a href="http://www.weezeesgifts.com/index.php?main_page=products_all&zenid=4f11ae0bd80d1a4c1f1d20593560d32c">All Products ...</a></li></ul></div></div>
239 <!--// eof: categoriescss //-->
240
241 <!--// bof: featured //-->
Yes, see the part in bold above? That is a blank link. That seems to be created by the categories css mod you are using, I would ask there.
Re: Cherry Zen Template Support Thread
Hi Jade,
The code I used to add the links to the nav bar, created a gap between the nav bar and the columns. Do you know what might cause that and how to fix it?
Here is a link to my site: www.allk-9.com
Here is the 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-->
One more thing... :-). On some pages there are yellow edges around my search box. Click on the Shipping Information link or Return Policy link and look at the search box at the top of the left column. You will see a yellow edge around the box. Do you know why that is and where/how to remove the yellow?
Thanks!
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
One more thing... :-). On some pages there are yellow edges around my search box. Click on the Shipping Information link or Return Policy link and look at the search box at the top of the left column. You will see a yellow edge around the box. Do you know why that is and where/how to remove the yellow?
Thanks!
Hi gsdcypher. I know this was directed at Jade, but just letting you know that I can't see any yellow edges around the search box using either IE7 or firefox.
Does anyone else see any yellow edges?
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.
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:
I too would like buttons for my site. Can you give me a bit more instruction though? Where would I find the button image? What folder would I upload it to? I can't seem to figure out how to do these things when it comes to templates. I am trying to do everything on my own rather than just doing the norm of adding products, pages, etc.
Thanks.
http://personalized2perfection.net
Your one stop shop for unique personalized gifts!
Gifts for any gender, any age, no matter the occasion.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
The code I used to add the links to the nav bar, created a gap between the nav bar and the columns. Do you know what might cause that and how to fix it?
Here is a link to my site:
www.allk-9.com
Here is the 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-->
First things first, the code above is not the code you currently have on your website, the code on your website needs some serious cleanup, and the code above needs some tweaking as well. "your new div", is not a valid css name, you need to give a name, and then if you are using <ul>, there needs to be <li>'s as well. Here is the code above cleaned up:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>|
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Here is the code you're using currently, all cleaned up:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<li><a href="http://www.allk-9.com">Home</a></li>|
<li><a href="account/login.html">Order Tracking</a>|</li>
<li><a href="log-off.html">Logoff</a>|</li>
<li><a href="pages/faq-pv-c0-11.html">FAQ</a>|</li>
<li><a href="contact_us.html">Contact Us</a></li>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Then in your css change #navEZPagesTop to this:
Code:
#navEZPagesTop {
font-weight:bold;
width:100%;
height:25px;
}
change #navEZPagesTop a to this:
Code:
#navEZPagesTop a {
padding:0 8px;
}
and add this to your css:
Code:
#ezLinks ul li {display:inline;}
Then once that is fixed, we can look into the gap.
Quote:
Originally Posted by
gsdcypher
One more thing... :-). On some pages there are yellow edges around my search box. Click on the Shipping Information link or Return Policy link and look at the search box at the top of the left column. You will see a yellow edge around the box. Do you know why that is and where/how to remove the yellow?
Thanks!
That's probably the IE autofill feature. Are you using the google toolbar also?
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
mccalld
Can someone look at my site in IE and tell me what I am doing wrong. The left menu bars are down at the bottom and the center text is on the left. Can anyone suggest what is going on?
http://www.queencandles.com/Sales
Thanks,
Damon
What version of the template are you using? What version of IE do you see the issue? Does the same thing happen at my test site http://www.cherryzen.jadetrue.com ?
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
ashton0603
I too would like buttons for my site. Can you give me a bit more instruction though? Where would I find the button image? What folder would I upload it to? I can't seem to figure out how to do these things when it comes to templates. I am trying to do everything on my own rather than just doing the norm of adding products, pages, etc.
Thanks.
http://personalized2perfection.net
Your one stop shop for unique personalized gifts!
Gifts for any gender, any age, no matter the occasion.
Buttons are found in includes/templates/cherry_zen/buttons/english/
There are a lot of different buttons for the site, not just one. You'd need to create any new ones you want with an image editing program, or use some from the download section. There's also this site:
http://www.advancewebsoft.com/downlo...nerator-p.html
which allows you to upload a left, right, and middle piece of your button, and then it creates all of them for you. It's not perfect though, but its a good time saver. It also has some pre-created buttons you can use.
Re: Cherry Zen Template Support Thread
I've searched & searched for the answer to this & cannot find it at all, please help!
How to I modify the top-level category links in the category sidebox in this template?
I've tried adding a.category-top, I've tried #categories a.category-top, I've tried just about every suggestion in this thread:
http://www.zen-cart.com/forum/showthread.php?t=71511
& none of them have created ANY change (but editing other things in the stylesheet DO work, I'm not editing an unused file). I installed the ch_categories mod that keeps all categories open, but this mod still calls the tpl_categories.php file (which has not been modified), so that should not be causing problems. I am just so frustrated that I haven't been able to figure this out on my own. :frusty:
Is there a different class being used on this template that I should be changing? Or something else?
Re: Cherry Zen Template Support Thread
If you take a look at my site"www.glamorousshoe.com" you will see that the content is wrapped in a table. How can I do something like that for this site: www.homedecoronline.net.
Also the links in the header don't show up in IE7.,
1 Attachment(s)
Re: Cherry Zen Template Support Thread
Hello Jade.
Thanks so much for this template. I have been teaching myself how to work these files & practicing on a test server before I upload. I am almost ready but a couple things are still bugging me & I can't figure them out.
I am using column layout for product listings. I would like as many products as possible on a listing page. I plan to have hundreds of products & don't want shoppers wasting time having to navigate page after page. I understand having to adjust the image size for the product listing page, but I don't know how to adjust the fonts. They are left justified and I would like them smaller & centered. I also would like the spaces removed between the product name, the price & the cart. Pretty much I need to consolidate & shrink the entire box.
I also noticed, when I increase the column count, the row count decreases. So if I increase to 6 columns, I have only 1 row. Your dotted lines sadly disappear with this many columns also.
My ideal listing pages would have 6 columns with at least 4 rows of products.
I am hoping you can tell me what to modify even though I'm not yet online.
Thanks,
Diana