Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Step 2 of checkout everything is centered

Step 2 of checkout everything is centered

Locked

Views: 913

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
27 Apr 2008, 3:54 AM
#1
jaylyns avatar

jaylyns

New Zenner

Join Date:
Feb 2008
Posts:
61
Plugin Contributions:
0

Step 2 of checkout everything is centered

Everything in step two of checkout has everything centered. Every box in the center column has the text in it centered. The addresses, payment methods, coupon info, etc. But looks fine in firefox. Font size is also much larger in IE than FF. Any help would be much appreciated.

The site is https://www.jaylyns.com Note: this site sells products of adult nature.

27 Apr 2008, 4:21 AM
#2
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Step 2 of checkout everything is centered

It would help to provide a test account. :)

27 Apr 2008, 4:24 AM
#3
jaylyns avatar

jaylyns

New Zenner

Join Date:
Feb 2008
Posts:
61
Plugin Contributions:
0

Re: Step 2 of checkout everything is centered

Sorry bout that. Use [email protected] as the user and "testing" as the password. Thanks. Sorry about that.

27 Apr 2008, 4:35 AM
#4
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Step 2 of checkout everything is centered

<span class="termsdescription">Please acknowledge the terms and conditions bound to this order by ticking the following box. The terms and conditions can be read <a href="http://jaylyns.com/index.php?main_page=conditions"><span class="pseudolink">here</span></a>.</div>

Above is part of the source code from your store. You will notice that the span for termsdescription was never closed. And since this class has text-align:center, it causes all the content inside (which is the rest of the page in this case) to be aligned center.

27 Apr 2008, 4:40 AM
#5
jaylyns avatar

jaylyns

New Zenner

Join Date:
Feb 2008
Posts:
61
Plugin Contributions:
0

Re: Step 2 of checkout everything is centered

That must have happened when I added the below to the css. because I haven't edit the php. Would adding this in css cause that? How do I make it close if not edited in php?

.termsdescription {display: block;
font-size: 1.5em;
text-align: center;
margin-bottom: 1.2em;}

.termsiagree {font-size: 1.3em; color: #fa0000;}

27 Apr 2008, 4:42 AM
#6
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Step 2 of checkout everything is centered

You can remove the text-align: center; from the class in the css file, but that is not a good fix. And there is no other way to close it, you have to edit the php file.

27 Apr 2008, 4:50 AM
#7
jaylyns avatar

jaylyns

New Zenner

Join Date:
Feb 2008
Posts:
61
Plugin Contributions:
0

Re: Step 2 of checkout everything is centered

:oops: I did edit that file. All fixed. Thanks so much for your help.