Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Boggled
That worked perfect!
One more question :lookaroun
I widened the left sidebox to 165px (image too).
I need to increase the padding between the left sideboxes and the centerbox contents. The centerboxes are now off center (to the left) and the text is too close to the edge of the left side column.
I've tried changing two or three things in the CSS file that 'looked right' but it didn't work. I know this is another one of those simple changes I'm just over looking. :laugh:
I added a screenshot to show what I'm talking about on the centerbox part.
Since you changed all instances of 150px to 165px, you need to adjust the paddings by 15px as well.
For example, here is the original .outer:
.outer {
padding-left: 165px; /* Same width as margin-left for the float-wrap div */
padding-right: 150px; /* Our right column width */
}
If you changed your padding-right:above to 165px, then you also need to increase padding-left from 165px to 180px.
There are three instances of 165 that need to be 180. :cool:
Re: Checkout w/Empty Cart
Quote:
Originally Posted by
lankeeyankee
It seems as if having a link to checkout with nothing in the cart breaks the template.
Matt
I can't see any issue like this on my test site. Try here:
http://www.cherryzen.jadetrue.com/
does the same thing happen?
Could I see a link please?
Re: Cherry Zen Template Support Thread
Hello, I don't you know if you can help me with this problem.
When someone order and pay with credit card, the payment goes through, and I get confirmation from my payment gateway. However, the order itself doesn't show in my Zen Cart admin panel. Which means I receive the customers payment notification from the payment gateway, but the order itself is not registered on the store, so I don't receive the order. However, this is only happening with the credit card order, the orders by check or money shows perfectly on the admin. window.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
isvara99######################
Hello, I don't you know if you can help me with this problem.
When someone order and pay with credit card, the payment goes through, and I get confirmation from my payment gateway. However, the order itself doesn't show in my Zen Cart admin panel. Which means I receive the customers payment notification from the payment gateway, but the order itself is not registered on the store, so I don't receive the order. However, this is only happening with the credit card order, the orders by check or money shows perfectly on the admin. window.
I'm really not familiar with credit card or non completing payment issues, I'd ask that in the general forum.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
No, you don't have to live with it, its not a hard fix. Did you paste this code in your css:
.listingPrice {display:block;}
Or turning on the product name on that page will fix the problem instantly. I would think you might want the name below the image? If not, the above code should fix the issue, if not, just let me know, and we'll figure it out. I can't look at your site to help you now, as it is down for maintenance. If you turn it back on I can see the font issue.
Ok site's back on now.
I added in the code above and nothing changed. Perhaps I put it in the wrong spot?
I just tested the problem with the changing font size and it seems to occur when I click on a category to sub-category the change occurs.
Beth-Katherine
Oh my daughter said "sweeeet" when she saw your new template. A compliment from a 20 something.
Re: Checkout w/Empty Cart
Quote:
Originally Posted by
jettrue
I just uploaded it to a live test server to try it out, thinking that maybe it was a quirk with the xampp home server. I found out that it only did it on my local test site if I was logged in as a user, it was fine if not logged in. I went to your test site and registered and tried to checkout without anything in the cart and it displayed the time out page normally. So I thought, well it must be a funny xampp server issue. But, on my live test site hosted on a remote server it does the same thing. Go to www.globalcustomdrums.com and log in as mattlong AT example DOT com password: password then click the checkout link in the header and tell me what happened. Maybe it's some weird quirk on my browsers? It does the same thing in IE7 and FF2.0.0.2.
Matt
Re: Checkout w/Empty Cart
Quote:
Originally Posted by
lankeeyankee
I just uploaded it to a live test server to try it out, thinking that maybe it was a quirk with the xampp home server. I found out that it only did it on my local test site if I was logged in as a user, it was fine if not logged in. I went to your test site and registered and tried to checkout without anything in the cart and it displayed the time out page normally. So I thought, well it must be a funny xampp server issue. But, on my live test site hosted on a remote server it does the same thing. Go to
www.globalcustomdrums.com and log in as mattlong AT example DOT com password: password then click the checkout link in the header and tell me what happened. Maybe it's some weird quirk on my browsers? It does the same thing in IE7 and FF2.0.0.2.
Matt
I promise, you are missing a </div>, like I mentioned before. It's an error in zen cart, I even posted it in the zen cart bug report section a while back.
Open up templates/tpl_time_out_default.php, and change this:
<h1 id="timeoutDefaultHeading"><?php echo HEADING_TITLE_LOGGED_IN; ?></h1>
<div id="timeoutDefaultContent" class="content"><?php echo TEXT_INFORMATION_LOGGED_IN; ?></div>
<?php
} else {
?>
to this:
<h1 id="timeoutDefaultHeading"><?php echo HEADING_TITLE_LOGGED_IN; ?></h1>
<div id="timeoutDefaultContent" class="content"><?php echo TEXT_INFORMATION_LOGGED_IN; ?></div>
</div>
<?php
} else {
?>
I guess I should include this file in the template, since 1.3.7 has this bug.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Beth-katherine
Ok site's back on now.
I added in the code above and nothing changed. Perhaps I put it in the wrong spot?
I just tested the problem with the changing font size and it seems to occur when I click on a category to sub-category the change occurs.
Beth-Katherine
Oh my daughter said "sweeeet" when she saw your new template. A compliment from a 20 something.
I see that the .listingPrice worked, as the price is no longer next to the image, but now it is below the image.
It looks like your font issue is fixed? Perhaps you had an open <font size="3"> in your category description.
Re: Cherry Zen Template Support Thread
Hello, how would I create a spot on the right side of the tagline to place an image just like the logo on the left side? Im new to this so please explain...:blush: Thanks!