-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
No, the categories mod you are using no longer uses category-top. View the source of your site after you click on a category... in the source there is no category-top to be found ANYWHERE. You should ask in the thread for that mod if there is one, and you can style that menu in stylesheet_categories_menu.css.
um, it's not the site in my sig, and I have since reactivated the default category section as well (which is not modified) & cannot manage to alter sections of ONLY the category sidebox, either nothing happens or all links change, or center box as well, or all left sideboxes :frusty:
It is here:
http://www.mayanconnection.com/_new
& as mentioned, I've tried a number of things, I've already looked at the source & tried every class I could see, not just category-top, that's why I was wondering if it's something related to this template?
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
sleepless
Hi Jade,
I actually have a question for the Simple Zen template but couldn't find a thread for that. I just switched to the Simple template and usually make my buttons to match the site or duplicate yours if I need more. But...I can't duplicate this one. Do you, by any chance, have a wishlist button for this template. I would gladly pay for you to make one if not. Just pm me with details.
The template is on my adult site:
http://www.sleeplessnightsonline.com/
Thanks again for yet another great template!
Kelly
Simple Zen Thread:
http://www.zen-cart.com/forum/showthread.php?t=44474
I don't have one made... can make one in the next few days. :smile:
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Snuggle Bug
um, it's not the site in my sig
Sorry, my mind reading isn't working today.
Quote:
Originally Posted by
Snuggle Bug
It is here:
http://www.mayanconnection.com/_new
& as mentioned, I've tried a number of things, I've already looked at the source & tried every class I could see, not just category-top, that's why I was wondering if it's something related to this template?
since there is a color defined for a:link in this template, you can do this:
a.category-top:link {color:#000000;font-weight:bold;}
-
Re: Cherry Zen Template Support Thread
Hi Jade,
The code works and the css lines keeps the dots from appearing :smile:. The gap is still there, but now it only appears when there is an item in the cart. And the notice bar that is supposed to come up and say you have successfully added the item to your cart, doesn't come up anymore. Maybe that is a clue that will help the diagnosis?
Weird huh?
Code:
<!--bof-view cart and checkout now links-->
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<div id="ezLinks">
<ul class="forward">
<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>
</ul>
</div>
<?php }?>
<!--eof-view cart and checkout now links-->
Thanks!
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
since there is a color defined for a:link in this template, you can do this:
a.category-top:link {color:#000000;font-weight:bold;}
Causes no change on either category menu:cry:
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Snuggle Bug
Causes no change on either category menu:cry:
nevermind, finally got it figured out, thx for the help. I was using the right coding, but was adding to the bottom of the stylesheet, & the code just above was missing a } :blush:
-
Re: Cherry Zen Template Support Thread
reposting problem I am experiencing with the large image on product info pages.
This problem is to do with the drop shadow on product images and the zen lightbox mod.
When you are using this template along with zen lightbox, something throws the drop image out. I managed to fix this using some instruction found in this thread.
Quote:
Open your //cherry_zen/templates/tpl_modules_main_product_image.php file.
Around line 35, DELETE this:
Code:
if (ZEN_LIGHTBOX_STATUS == 'true') {
echo '<script language="javascript" type="text/javascript"><!--
document.write(\'<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name) . '">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>\')//--></script>';
} else {
echo '<script language="javascript" type="text/javascript"><!--
document.write(\'<a href="javascriptopupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>\')//--></script>';
}
AND REPLACE IT WITH THIS:
Code:
if (ZEN_LIGHTBOX_STATUS == 'true') {
echo '<script language="javascript" type="text/javascript"><!--
document.write(\'<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name) . '">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</div></a>\')//--></script>';
} else {
echo '<script language="javascript" type="text/javascript"><!--
document.write(\'<a href="javascriptopupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</div></a>\')//--></script>';
}
Around line 41 look for this line:
<!-- eof Zen Lightbox v1.4 aclarke 2007-09-15 -->
On the next line insert this code:
Code:
<div id="productMainImage" class="centeredContent back">
Insert this code at the very BOTTOM after the </div> tag:
Code:
<p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><br />
<div id="productMainImage2" class="centeredContent back"><span class="imgLink"><a href="<? zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name); ?>"> larger image</a></span></div>
Now open your //cherry_zen/css/stylesheet.css and insert this into your stylesheet:
Code:
#productMainImage2 {
float:left;
margin: -5px 0 0 10px !important;
margin: -5px 0 0 5px;
}
The first margin entries (-5px) above will move the text up or down relative to the picture depending on the number you use.
But as soon as I did this, it fixed the initial problem but created another problem where as on the product info page, when you click on the text link "larger Image" it takes you back to the index page instead of opening up the image.
Any suggestions on how to fix would be much appreciated!!. link to a product can be found by Clicking Here
TIA
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
The code works and the css lines keeps the dots from appearing :smile:. The gap is still there, but now it only appears when there is an item in the cart. And the notice bar that is supposed to come up and say you have successfully added the item to your cart, doesn't come up anymore. Maybe that is a clue that will help the diagnosis?
Weird huh?
Code:
<!--bof-view cart and checkout now links-->
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<div id="ezLinks">
<ul class="forward">
<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>
</ul>
</div>
<?php }?>
<!--eof-view cart and checkout now links-->
Thanks!
I'm not seeing the ezLinks css uploaded to your site?
As for the message, the code above shouldn't affect it. You didn't miss the closing <?php }?> in the above code, right?
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
heavenlynights
reposting problem I am experiencing with the large image on product info pages.
This problem is to do with the drop shadow on product images and the zen lightbox mod.
When you are using this template along with zen lightbox, something throws the drop image out. I managed to fix this using some instruction found in this thread.
But as soon as I did this, it fixed the initial problem but created another problem where as on the product info page, when you click on the text link "larger Image" it takes you back to the index page instead of opening up the image.
Any suggestions on how to fix would be much appreciated!!. link to a product can be found by
Clicking Here
TIA
Since I don't use the lightbox mod, this is hard for me to test. I'll try to take a look in the next few days, but it might take me a bit.
-
Re: Cherry Zen Template Support Thread
I am having a problem with the header bar. I have my site set up in engish and in portuguese. When I have the page in portuguese the words on the "shopping cart" ("carrinho de compras" in portuguese) link on the header bar wrap and fall out of line with the rest of the header bar. How can I set it so that the width of the category changes automatically to accomodate the longer words and avoid having the text wrap.
-
Re: Cherry Zen Template Support Thread
Hi Jade,
I put this at line 654 of my stylesheet. Should it be somewhere else?
#ezLinks ul li {display:inline;}
Quote:
I'm not seeing the ezLinks css uploaded to your site?
Thanks.
-
Re: Cherry Zen Template Support Thread
For Some reason if you browse the site using IE 7 The Nav in the header don't show up. Also Iam trying to create a table at the buttom with white background so I can add links to the Home, about us, and other innformation from the side box.
Can you tell me how I can do that.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Since I don't use the lightbox mod, this is hard for me to test. I'll try to take a look in the next few days, but it might take me a bit.
Thanks Jade for help and time.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
I put this at line 654 of my stylesheet. Should it be somewhere else?
#ezLinks ul li {display:inline;}
Thanks.
It doesn't matter where you put it, but it wasn't there the other day when I was looking at your site.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
For Some reason if you browse the site using IE 7 The Nav in the header don't show up. Also Iam trying to create a table at the buttom with white background so I can add links to the Home, about us, and other innformation from the side box.
Can you tell me how I can do that.
What "Nav" in the header are you talking about?
Why not use the ezpages function to add those as ezpage links in your footer?
-
Re: Cherry Zen Template Support Thread
I think I found part of what I was looking for.
I was worried that I had messed things up by already having the grid layout module, then installing Cherry Zen over it- but I assume the Cherry Zen template file overides the default template files? I found this thread regarding the column grid layout I was asking about- it offers an update (Pro) that corrects the issue I was having: http://zen-cart.com/forum/showthread...288#post495288. So that fixed the font centering issue & gridlines.
I have learned quite a bit by your detailed instructions with your template files as well as this thread - thank you.
Diana
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
dmk909
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
I think I found part of what I was looking for.
I was worried that I had messed things up by already having the grid layout module, then installing Cherry Zen over it- but I assume the Cherry Zen template file overides the default template files? I found this thread regarding the column grid layout I was asking about- it offers an update (Pro) that corrects the issue I was having: http://zen-cart.com/forum/showthread...288#post495288. So that fixed the font centering issue & gridlines.
I have learned quite a bit by your detailed instructions with your template files as well as this thread - thank you.
Diana
-
1 Attachment(s)
Re: Cherry Zen Template Support Thread
Hi
i want add a memu to the Navigate ,like "about us" to the nav
and also i like the search bar to the right sider,like the attached pic
how can i do ?
thanks for you support!
Best regards
Terry
-
Re: Cherry Zen Template Support Thread
Hi,
This is a really good template, well done!
I would like to ask if is possible to use Fual Slimbox or Lightbox with this template? and what editing you would need to do to get it to work?
Thanks
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
yhg11
Hi
i want add a memu to the Navigate ,like "about us" to the nav
and also i like the search bar to the right sider,like the attached pic
how can i do ?
thanks for you support!
Best regards
Terry
This will take more than one step, but I will try to explain it the way I did it.
Locate the fileincludes/templates/Cherry_zen/common
open tpl_header.php
Locate the following code"
Quote:
<li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW, '', 'SSL'); ?>"><span><?php echo New_Arrivals; ?></span></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a></li>
<?php } } ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
</ul>
if you want to add a link you can copy one of the line starting with<li> and then paste it wherever you want to add the "about us" link.
Make sure you edit the link to correspond to the about us files, for example change these 2 links
Quote:
<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL')
Quote:
?php echo HEADER_TITLE_CART_CONTENTS;
This might get confusing, you better off adding a link in the ez-pages header section.
-
Re: Cherry Zen Template Support Thread
I need the footer to have a white background like the rest of the site content. How can I do that?
www.homedecoronline.net
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
markalan
Hi,
This is a really good template, well done!
I would like to ask if is possible to use Fual Slimbox or Lightbox with this template? and what editing you would need to do to get it to work?
Thanks
Hi markalan
I am currenty using the lightbox feature with this template and am experiencing a problem, which is documented in this thread. the following link will explain what the problem is and a fix to the problem. However this particular fix creates another problem, (also mentioned in link) which still needs attention. jade is going to have a look at it for me when she can.
http://www.zen-cart.com/forum/showpo...postcount=1117
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
What "Nav" in the header are you talking about?
Why not use the ezpages function to add those as ezpage links in your footer?
I just checked the site using IE7, and there is nothing there.
I was using Ie6 building the site, and there are navigation buttons in the header, such as Home, My account, etc. How come they don't show up on IE7, Also I want to stritch the site white color to include the footer, how can I do that?
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
This will take more than one step, but I will try to explain it the way I did it.
Locate the fileincludes/templates/Cherry_zen/common
open tpl_header.php
Locate the following code"
if you want to add a link you can copy one of the line starting with<li> and then paste it wherever you want to add the "about us" link.
Make sure you edit the link to correspond to the about us files, for example change these 2 links
This might get confusing, you better off adding a link in the ez-pages header section.
Thanks for your help , yes i can add the link ,
but how can i moving the Search bar to the right sider?
thanks again
Terry
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
yhg11
Thanks for your help , yes i can add the link ,
but how can i moving the Search bar to the right sider?
thanks again
Terry
I have been trying to move it all the way to the right but It doesn't seem to move, The closest to the right I got it was to be right after the navigation bar.
You can turn it off from the admin panel and just use the one in the side box instead!
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
I have been trying to move it all the way to the right but It doesn't seem to move, The closest to the right I got it was to be right after the navigation bar.
You can turn it off from the admin panel and just use the one in the side box instead!
thanks
i need it on the left in the navigation bar,anyone can help me
terry
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
Also I want to stritch the site white color to include the footer, how can I do that?
I'd also like to put a (separate) background behind the footer -- as the font can't be seen right now.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
yhg11
thanks
i need it on the left in the navigation bar,anyone can help me
terry
Its on the left by standard. So just go into admin and box layout and set it on!
-
Re: Cherry Zen Template Support Thread
Hey Jade,
How come the template look is different between the IE6 and IE7. Don't get me wrong Iam not complaining"its Free" but I am just curious.
It looks much better and cleaner in IE7.
Iam having problems with displaying the border when browsing and item, Sometimes it breaks on the sides.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
Hey Jade,
How come the template look is different between the IE6 and IE7. Don't get me wrong Iam not complaining"its Free" but I am just curious.
It looks much better and cleaner in IE7.
Iam having problems with displaying the border when browsing and item, Sometimes it breaks on the sides.
Do you see the same exact issues with my default install at http://www.cherryzen.jadetrue.com ?
IE6 won't display the drop shadow borders, there's more information on that in the readme.txt.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
I just checked the site using IE7, and there is nothing there.
I was using Ie6 building the site, and there are navigation buttons in the header, such as Home, My account, etc. How come they don't show up on IE7, Also I want to stritch the site white color to include the footer, how can I do that?
Are you talking about homedecoronline.net? I know we had this discussion before, but I answer a lot of questions and can't remember what site we're referring to.
If you are talking about homedecoronline.net, it looks like you've significantly changed the header, so I'm not sure what the problem is. Does the header menu on my test site, http://www.cherryzen.jadetrue.com show up in IE7?
The "footer" you've created is not the real zen cart footer, you've added a table. You'd have to give that table a css style name, then add a white background to that style in the css.
For example, right now you have this:
Code:
<table border="0" width="98%">
<tr>
<td align="left" valign="top" width="255">
<a href="http://www.homedecoronline.net/">
<img src="../includes/templates/Sami/images/logo_small.jpg" alt="Modern Home Decor" /></a>
</td>
<td valign="top" align="center">
<a href="index.php">Home</a> |
<a href="index.php?main_page=page_2">About Us</a> |
<a href="index.php?main_page=contact_us">Contact Us</a>
<br />
<a href="index.php?main_page=account">My Account</a> |
<a href="index.php?main_page=shopping_cart">Shopping Cart</a> |
<a href="index.php?main_page=checkout_shipping">Check Out</a>
<br />
<a href="index.php?main_page=shippinginfo">Shipping & Returns</a>
<br />
</td>
<td valign="top" align="right" width="253">
<img src="https://www.paypal.com/en_US/i/bnr/horizontal_solution_PPeCheck.gif"alt="Secure Payment" /></a>
</td>
</tr>
</table>
If you change it to this:
Code:
<table border="0" width="98%" id="footerTable">
<tr>
<td align="left" valign="top" width="255">
<a href="http://www.homedecoronline.net/">
<img src="../includes/templates/Sami/images/logo_small.jpg" alt="Modern Home Decor" /></a>
</td>
<td valign="top" align="center">
<a href="index.php">Home</a> |
<a href="index.php?main_page=page_2">About Us</a> |
<a href="index.php?main_page=contact_us">Contact Us</a>
<br />
<a href="index.php?main_page=account">My Account</a> |
<a href="index.php?main_page=shopping_cart">Shopping Cart</a> |
<a href="index.php?main_page=checkout_shipping">Check Out</a>
<br />
<a href="index.php?main_page=shippinginfo">Shipping & Returns</a>
<br />
</td>
<td valign="top" align="right" width="253">
<img src="https://www.paypal.com/en_US/i/bnr/horizontal_solution_PPeCheck.gif"alt="Secure Payment" /></a>
</td>
</tr>
</table>
Then add this to the css:
Code:
#footerTable {background:#ffffff;}
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
I just checked the site using IE7, and there is nothing there.
I was using Ie6 building the site, and there are navigation buttons in the header, such as Home, My account, etc. How come they don't show up on IE7, Also I want to stritch the site white color to include the footer, how can I do that?
You should also fix the errors for your site:
http://validator.w3.org/check?verbos...ronline.net%2F
This needs to be removed from your site, somehow that was added somewhere:
<head>
<meta http-equiv="Content-Language" content="en-us">
</head>
You also need to get rid of the:
<span class="style1">
and
</span>
That is enclosing your navMainWrapper section. (should be found in tpl_header.php)
Just getting rid of those may fix most of the errors. I don't think you are missing any </div>'s like the above link says, its just because of some faulty html.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
yhg11
thanks
i need it on the left in the navigation bar,anyone can help me
terry
It is on the left in the navigation bar. Did you turn it on under "tools", "layout boxes controller".
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Lovely
I'd also like to put a (separate) background behind the footer -- as the font can't be seen right now.
You can style the footer through the #navSuppWrapper tag in the stylesheet.css.
-
Re: Cherry Zen Template Support Thread
Everything Should be Fixed, Thanks again for all the help.
-
Re: Cherry Zen Template Support Thread
oops! replied on wrong message
-
Re: Cherry Zen Template Support Thread
Thanks...I would really appreciate it. Thanks for the link too.
Quote:
Originally Posted by sleepless
Hi Jade,
I actually have a question for the Simple Zen template but couldn't find a thread for that. I just switched to the Simple template and usually make my buttons to match the site or duplicate yours if I need more. But...I can't duplicate this one. Do you, by any chance, have a wishlist button for this template. I would gladly pay for you to make one if not. Just pm me with details.
The template is on my adult site:
http://www.sleeplessnightsonline.com/
Thanks again for yet another great template!
Kelly
Simple Zen Thread:
http://www.zen-cart.com/forum/showthread.php?t=44474
I don't have one made... can make one in the next few days.
-
Re: Cherry Zen Template Support Thread
I am totally in love with this template. I am testing a new shop with this template and I find a problem if I view the site in IE6. The left column starts after the last bit of the content. So if you content is long, you won't see any category links etc on the left side unlease you scroll down.
The test site can be view here: http://www.lampworking.nl/stempelwinkel
-
Re: Cherry Zen Template Support Thread
I found the problem. I enlarged the left column in the admin part, after I reduced it, everything works fine.
-
2 Attachment(s)
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
sleepless
Thanks...I would really appreciate it. Thanks for the link too.
Here's a couple... is this the text that you needed?
-
Re: Cherry Zen Template Support Thread
Hi I was hoping to find out if it is possible to change the side colour on cherry zen. In my case the standard blue to another colour code, and I simply can't find where to do this, and it is probably the easiest of things to do!
Thanks,
Andrea
www.thelittleonlinecardshop.com.au
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
crisand
Hi I was hoping to find out if it is possible to change the side colour on cherry zen. In my case the standard blue to another colour code, and I simply can't find where to do this, and it is probably the easiest of things to do!
Thanks,
Andrea
www.thelittleonlinecardshop.com.au
The gray sidebar background color is done with an image, you have to open up the image, and change the color.
includes/templates/cherry_zen/images/sidebox.gif
If you are talking about the site background color, that is in the includes/templates/cherry_zen/css/stylesheet.css
Code:
body {
background:#84A4C1; /* main site background color, blue default */
}
-
Re: Cherry Zen Template Support Thread
Hi everyone!
Question...maybe I m missing something but....
the shopping cart is not working at all for me with Cherry Zen...the site is live, but not really...you can't get to it right now except or directly...
I followed all of the instructions, yet it doesn't work...when I add something to the cart it brings up a blank screen, though the product has been added to the cart...when I click checkout, I get a blank screen...I added the file Cherry Zen 1.5/includes/languages/english/extra_definitions/cherry_zen/order_steps
but nothing......help me please.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Athenafoods
Hi everyone!
Question...maybe I m missing something but....
the shopping cart is not working at all for me with Cherry Zen...the site is live, but not really...you can't get to it right now except or directly...
I followed all of the instructions, yet it doesn't work...when I add something to the cart it brings up a blank screen, though the product has been added to the cart...when I click checkout, I get a blank screen...I added the file Cherry Zen 1.5/includes/languages/english/extra_definitions/cherry_zen/order_steps
but nothing......help me please.
Ok, does this happen on the classic template?
If it only happens in cherry zen, either you're missing a file, you've got a corrupt file, or you screwed something else up, LOL. But it does work fine on a default cherry zen install. Confirm all files are uploaded and in their correct spots, and confirm that there are no spaces at the very beginning of the files that you've edited.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Ok, does this happen on the classic template?
If it only happens in cherry zen, either you're missing a file, you've got a corrupt file, or you screwed something else up, LOL. But it does work fine on a default cherry zen install. Confirm all files are uploaded and in their correct spots, and confirm that there are no spaces at the very beginning of the files that you've edited.
Quote..it does only happen in Cherry Zen. I thought I had uploaded all the files to their correct location and I haven't edited anything yet...I uploaded all of the ..
cherry_zen_template_1-5\Cherry Zen 1.5\includes\templates\cherry_zen to the includes\templates files on my server.....I then uploaded all the other i.e language or modules to their respective files in includes\languages or includes\modules......I haven't had this issue with one other template, but I don't like the template and really like this one...I don't think I put anything in the wrong file, but I could try and re do it.
-
Re: Cherry Zen Template Support Thread
Actually...quick question....when I upload the new language files for example...do I want to leave them in their own cherry_zen folder or upload them to the main folder and overwrite the existing ones? I left them in their own folder if that helps.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Ok, does this happen on the classic template?
If it only happens in cherry zen, either you're missing a file, you've got a corrupt file, or you screwed something else up, LOL. But it does work fine on a default cherry zen install. Confirm all files are uploaded and in their correct spots, and confirm that there are no spaces at the very beginning of the files that you've edited.
I GOT IT!!! YAY!!!
Sorry to bother you with this...turns out I had never uploaded...
\cherry_zen_template_1-5\Cherry Zen 1.5\includes\languages\english\cherry_zen
I did the extra definitions folder, but not the cherry zen folder...
yay....now I can start working on moding it.....
Thanks for your help though:clap:
-
Re: Cherry Zen Template Support Thread
I am building a zencart and have installed a new template.The problem is that When you first enter the site the template is all messed up but if you add the store extension or hit any other page the template becomes normal. Do you know how I can make the home page apear normal or alternatively point it to /store?
-
2 Attachment(s)
Re: Cherry Zen Template Support Thread
Hello!
Maybe you can help me?
Why is the left column not in left, but is in the mittle of the page?
the
.outer {
padding-left: 165px; /* Same width as margin-left for the float-wrap div */
padding-right: 150px; /* Our right column width */
}
dont work for me.
Everything else is nice, but my /index.php?main_page=shopping_cart dont work perfect.
Can you help, please :unsure:
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
mihkel80
Hello!
Maybe you can help me?
Why is the left column not in left, but is in the mittle of the page?
the
.outer {
padding-left: 165px; /* Same width as margin-left for the float-wrap div */
padding-right: 150px; /* Our right column width */
}
dont work for me.
Everything else is nice, but my /index.php?main_page=shopping_cart dont work perfect.
Can you help, please :unsure:
Then, something on that shopping_cart page is messed up. Probably either an extra </div> or a missing </div> somewhere. A link to your site would help.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
samfred
I am building a zencart and have installed a new template.The problem is that When you first enter the site the template is all messed up but if you add the store extension or hit any other page the template becomes normal. Do you know how I can make the home page apear normal or alternatively point it to /store?
A link would be extremely helpful.
If something is wrong on only the HOME page, then you should look to what is different on the home page.
Check your home page text to make sure all the </div>'s are closed properly. Troubleshooting logic will tell you that if all other pages are fine, then find the differences.
-
Re: Cherry Zen Template Support Thread
Hi Jade,
Can you tell from the code why the footer does not match the header??? *The links in the footer are centered and home is above the green bar...
Header:
Code:
* require code to show EZ-Pages list
*/
include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_header.php'));
?>
<?php if (sizeof($var_linksList) >= 1) { ?>
<div id="navEZPagesTop">
<div class="clearBoth"></div>
<!--bof-view cart and checkout now links-->
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<div id="ezLinks">
<ul class="forward">
<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>
</ul>
</div>
<?php }?>
<!--eof-view cart and checkout now links-->
<?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
if ($_SESSION['customer_id'] or ($var_linksList[$i]['name'] != 'Logoff')) { //show Logoff only if logged in ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a><?php echo ($i < $n ? EZPAGES_SEPARATOR_HEADER : '') . "\n"; ?>
<?php } // /if
} // end FOR loop ?>
</div>
<?php } ?>
Footer:
Code:
* require code to show EZ-Pages list
*/
include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_footer.php'));
?>
<?php if (sizeof($var_linksList) >= 1) { ?>
<div id="navEZPagesBot">
<div class="clearBoth"></div>
<!--bof-view cart and checkout now links-->
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<div id="ezLinks">
<ul class="forward">
<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>
</ul>
</div>
<?php }?>
<!--eof-view cart and checkout now links-->
<?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
if ($_SESSION['customer_id'] or ($var_linksList[$i]['name'] != 'Logoff')) { //show Logoff only if logged in ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a><?php echo ($i <= $n ? EZPAGES_SEPARATOR_FOOTER : '') . "\n"; ?>
<?php } // /if
} // end FOR loop ?>
</div>
<?php } ?>
-
Re: Cherry Zen Template Support Thread
Quote:
Quote:
Originally Posted by sleepless
Thanks...I would really appreciate it. Thanks for the link too.
Here's a couple... is this the text that you needed?
Yes. Thank you so much!!
Kelly
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
Can you tell from the code why the footer does not match the header??? *The links in the footer are centered and home is above the green bar...
I need to see it in action, please post a link. All that code doesn't help me. :smile:
-
Re: Cherry Zen Template Support Thread
Hi Jade,
www.allk-9.com
Thanks! :smile:
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Ok, the home link in the footer area is not part of ezpages, while the home link in the header area seems to be part of ezpages. So create a home link in ezpages for the footer. Then you'll need to remove the home link in includes/templates/YOUR_TEMPLATE/common/tpl_footer.php.
You can change this:
Code:
<!--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 -->
to this:
Code:
<!--bof-navigation display -->
<div id="navSuppWrapper">
<div id="navSupp">
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>
<?php } ?>
</div>
</div>
<!--eof-navigation display -->
Then you'll need to make changes in the css to make the footer match the header.
-
Re: Cherry Zen Template Support Thread
ahhhh... ok thanks. that is much closer.
still the footer links are centered and the header links are on the left.
and when you add an item to the cart, the view cart | checkout now lines up correct in the header and is slightly below in the footer....
any tweaks for that???
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
ahhhh... ok thanks. that is much closer.
still the footer links are centered and the header links are on the left.
and when you add an item to the cart, the view cart | checkout now lines up correct in the header and is slightly below in the footer....
any tweaks for that???
Have you tried adjusting any of the stylesheet.css file for those sections? You can look at the source of the page to see what sections are involved.
-
Re: Cherry Zen Template Support Thread
well i tried to... i copied the #navEZPagesTop and made the #navEZPagesBot so they would look the same...
Code:
#navEZPagesTop {
/*background-color:#9EAD48 /* background color behind ezpages section */
background:url("../images/ezbg.gif") repeat-x; grey background image behind ezpages section */
}
#navEZPagesBot {
/*background-color:#9EAD48 /* background color behind ezpages section */
background:url("../images/ezbg.gif") repeat-x; grey background image behind ezpages section */
}
and
Code:
#navEZPagesTop {
font-weight:bold;
width:100%;
padding:7px 0;
}
#navEZPagesTop a {
padding:0 8px;
}
#navEZPagesBot {
font-weight:bold;
width:100%;
padding:7px 0;
}
#navEZPagesBot a {
padding:0 8px;
}
-
1 Attachment(s)
Re: Cherry Zen Template Support Thread
Hey,
I'm having problems viewing my webpage in IE7. The right sideboxes goes off the original body. This only happens in some Screen Size and also , when you "restore down the screen" . The site is getxboxcodes.com.
Thank you.
Alwin
-
Re: Cherry Zen Template Support Thread
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
You can style the footer through the #navSuppWrapper tag in the stylesheet.css.
Added a background to the navSuppWrapper, but it isn't covering all the footer info. What else do I need to do?
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
CnTGifts
That has nothing to do with the template, that probably has to do with the SEO url system you're using.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
getxbox
Hey,
I'm having problems viewing my webpage in IE7. The right sideboxes goes off the original body. This only happens in some Screen Size and also , when you "restore down the screen" . The site is getxboxcodes.com.
Thank you.
Alwin
Does the same thing happen at my test site, http://www.cherryzen.jadetrue.com ?
What do you mean by "restore down the screen"?
-
Re: Cherry Zen Template Support Thread
Hi Jade,
Which additional fields do I have to modify for the header and footer (other than the ones I noted)?
Thanks!
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Lovely
Added a background to the navSuppWrapper, but it isn't covering all the footer info. What else do I need to do?
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 -->
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
No it does occur your Test Site.
" restore Down the screen means" opposite of maximize . Meaning making it smaller than the whole screen.
-
Re: Cherry Zen Template Support Thread
I mean, No it does not occur on your site.
-
Re: Cherry Zen Template Support Thread
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.
-
Re: Cherry Zen Template Support Thread
i have prob on my site: http://latter.com/index.php?main_pag...roducts_id=185
please help me fix that call for price link
thankz!
-
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:
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Lovely
Ah before the < /div >. It'd be much easier if we did exactly as you say :blink:
LOL, I should have just pasted it as an example, or said before that line, that would have been easier too. :P
-
Re: Cherry Zen Template Support Thread
Hey,
I'm having problems viewing my webpage in IE7. The right sideboxes goes off the original body. This only happens in some Screen Size and also , when you press the second button on the right top corner, which makes the explorer smaller. The site is getxboxcodes.com. Nedd help, Thanks
Thank you.
Alwin
-
Re: Cherry Zen Template Support Thread
which section(s) in the stylesheet.css control the alignment of the links in the ezpages header and the ezpages footer?
thanks!
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
which section(s) in the stylesheet.css control the alignment of the links in the ezpages header and the ezpages footer?
thanks!
If you view the source of your site for that section:
Code:
<div id="navSuppWrapper">
<div id="navSupp">
<div id="navEZPagesBot">
<div class="clearBoth"></div>
<!--bof-view cart and checkout now links-->
<!--eof-view cart and checkout now links-->
<a href="http://www.allk-9.com">Home</a> |
<a href="http://www.allk-9.com/account/login.html">Order Tracking</a> |
<a href="http://www.allk-9.com/pages/faq-pv-c0-11.html">FAQ</a> |
<a href="http://www.allk-9.com/contact-us.html">Contact Us</a> |
</div>
</div>
</div>
It tells you the three div's that you're working with.
Something like this should be good.
Code:
#navSuppWrapper {
width:950px;
margin:0 auto;
}
#navSupp {
margin:0 auto;
text-align:left;
padding-top:1em;
}
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
getxbox
Hey,
I'm having problems viewing my webpage in IE7. The right sideboxes goes off the original body. This only happens in some Screen Size and also , when you press the second button on the right top corner, which makes the explorer smaller. The site is getxboxcodes.com. Nedd help, Thanks
Thank you.
Alwin
Sorry, I don't have the time to figure this out, since it doesn't happen in my test site, compare your css with the original css, and see if you can find some differences, then see which difference is causing the problem. That is what I would do to figure out your issue.
-
Re: Cherry Zen Template Support Thread
Hmmm... ok so looking at the header, are these the sections to edit to control the ezpage links in the header?
If so, the links in the header are aligned to the left, how/where would I change that to center???
Code:
#navMain {
float:right;
width:760px;
line-height:normal;
}
Code:
#navMainWrapper {
height:32px;
width:100%;
font-size:12px;
}
Thanks!
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
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.
Thanks for the reply, I do have the buttons turned on but there is not box it just shows the word "Add" and then a box with a 0 in it?
-
Re: Cherry Zen Template Support Thread
Hi Jettrue,
I tried text-align:center in the #navMainWrapper and #navMain to center up the ezpage links in the header, but it had no affect in either. :-(
Thanks.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Adds
Thanks for the reply, I do have the buttons turned on but there is not box it just shows the word "Add" and then a box with a 0 in it?
Turn off the "Display Multiple Products Qty Box Status and Set Button Location" in "Configuration", "Product Listing".
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hmmm... ok so looking at the header, are these the sections to edit to control the ezpage links in the header?
If so, the links in the header are aligned to the left, how/where would I change that to center???
Code:
#navMain {
float:right;
width:760px;
line-height:normal;
}
Code:
#navMainWrapper {
height:32px;
width:100%;
font-size:12px;
}
Thanks!
No, that's not the section for the ezpages, that's the section for your blue tabs. From your source:
Code:
<div id="navEZPagesTop">
<div class="clearBoth"></div>
<!--bof-view cart and checkout now links-->
<!--eof-view cart and checkout now links-->
<a href="http://www.allk-9.com">Home</a> |
<a href="http://www.allk-9.com/account/login.html">Order Tracking</a> |
<a href="http://www.allk-9.com/pages/faq-pv-c0-11.html">FAQ</a> |
<a href="http://www.allk-9.com/contact-us.html">Contact Us</a> |
</div>
On an unrelated note.... did you disable right clicking on your site? In my not so humble opinion, I don't think people should disable their viewers' mouse controls. I use right click for a lot of things, and it's one of my pet peeves when someone disables it, LOL. On my list of web annoyances, it's second only to automatic music playing. :flex: If you've disabled right click to protect your images.... it doesn't work, there are ways around that. My suggestion is to use something like IH2 (Image Handler 2, in the downloads section), to create automatic watermarks for you.
-
Re: Cherry Zen Template Support Thread
Rats... I got confused. :( I was looking for the div's in the stylesheet that work with the ezpage link section in the header (like the example you posted for the footer)...
But I finally found it thank you! :clap:
Yes, I was having a lot of trouble with people downloading my images without permission. So I think my right click is disabled...:oops:
And I didn't disable it, someone helped me with that, so I don't know how to enable it. :blink:
I do have image Handler2 installed. I didn't know there was a built in watermark feature (or how to use it).
Thanks.
-
Re: Cherry Zen Template Support Thread
Hello, I知 having an issue with the right hand search box and a few of the buttons. I知 not sure what is triggering the error. I had the site fully operational on a server running php v 4.x.x the host changed locations so I had them put us on an up to date server only differences is php v 5.2.3 and php is running as cgi. I did the transfer and everything seems to be fine except for the search box and a few of the buttons. If you check the login button and the search box on the right you will see what I知 talking about.
Thank you in advance for any help.
Blessings,
Jim
-
Re: Cherry Zen Template Support Thread
Sorry for double posting, I forgot link in last post,
Hello, I知 having an issue with the right hand search box and a few of the buttons. I知 not sure what is triggering the error. I had the site fully operational on a server running php v 4.x.x the host changed locations so I had them put us on an up to date server only differences is php v 5.2.3 and php is running as cgi. I did the transfer and everything seems to be fine except for the search box and a few of the buttons. If you check the login button and the search box on the right you will see what I知 talking about.
Thank you in advance for any help.
Blessings,
Jim
http://pipersparlor.com/index.php?main_page=login
This is a lingerie site but this page has no graphics just log in page.
Thank you
-
Re: Cherry Zen Template Support Thread
i got a question
When people are on different pages on my site, in the whos online, it shows them as being on this page
http://www.reynoldsgiftshop.com/incl...herry_zen/css/
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
JMcGov
Sorry for double posting, I forgot link in last post,
Hello, I知 having an issue with the right hand search box and a few of the buttons. I知 not sure what is triggering the error. I had the site fully operational on a server running php v 4.x.x the host changed locations so I had them put us on an up to date server only differences is php v 5.2.3 and php is running as cgi. I did the transfer and everything seems to be fine except for the search box and a few of the buttons. If you check the login button and the search box on the right you will see what I知 talking about.
Thank you in advance for any help.
Blessings,
Jim
http://pipersparlor.com/index.php?main_page=login
This is a lingerie site but this page has no graphics just log in page.
Thank you
Try re-uploading all the images.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
CnTGifts
I don't know, sorry.
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
adoy
any help on my prob? thank you so much!
-
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Try re-uploading all the images.
BINGO!! Thank you!! I truly appreciate all the help you are with this template.
-
Re: LRG image error
Quote:
Originally Posted by
heavenlynights
ok below is the link to the original post by jmcgov which explains the problem that I am having. This problem is to do with the drop shadow on product images and the zen lightbox mod. I followed the same instruction noted in the below post which fixed the drop shadow problem but created another and that is in the product info page, when you click on the text link, larger image, it takes you back to the home page instead of opening the larger image.
http://www.zen-cart.com/forum/showth...402#post498402
member "Jmcgov" noted in the following post
http://www.zen-cart.com/forum/showpo...&postcount=794
that he/she had found the solution which was apparently a line of code that was missing. I am just wanting to know what that line of code was! so that I can fix problem.
Thanks Jade for taking the time to help!!
I appologize for taking so long to respond to this, I haven't been logged into the site for a while. Posts 557 and 558 by jkeifer provide a fix for this. The problem is that it throws like 18 validation errors. Hopefully someone with more coding skill than I have can fix the errors. BTW, by more coding skill than I have I mean any coding skill :shocking:
Blessings,
Jim
-
Re: LRG image error
Thanks Jim
Everything a o k now! :smile:
Quote:
Originally Posted by
JMcGov
I appologize for taking so long to respond to this, I haven't been logged into the site for a while. Posts 557 and 558 by jkeifer provide a fix for this. The problem is that it throws like 18 validation errors. Hopefully someone with more coding skill than I have can fix the errors. BTW, by more coding skill than I have I mean any coding skill :shocking:
Blessings,
Jim