Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Checkout Page-Paypal-radio buttons

Checkout Page-Paypal-radio buttons

Locked

Views: 2,467

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
25 Feb 2009, 2:20 AM
#1
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Checkout Page-Paypal-radio buttons

I have zencart 1.3.8. I have been using linkpoint for merchant account. I just setup PayPal express. And Checkout page does not look good.

At checkout....I can not seem to locate code for radio buttons to go to left side. They are currently showing in stylesheet as:

form, select, input{
display: inline;
font-size: 1em;
margin-top: 0.1em;
margin-right: 0.1em;
margin-bottom: 0.1em;
margin-left: 0.1em;
}
	
input {
	background-color: #cccccc;
	margin-right: 15px;
	margin-left: 5px;
	margin-top: 0.3em;
	font-size: 1.0em;
	}

	
input:focus {
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	}	
		

and it messes up other areas/pages when I try to change.

How do I add to checkout stylesheet to change layout of this page only?
I tried to add:
#checkoutPayment LABEL.radioButtonLabel {
margin-bottom: .5em;
margin-top: .5em;
float: left;
text-align: left;
display: inline;
}

But did not work.
I also can not seem to find code for Paypal to move on same page. I tried to add to checkout stylesheet: #paypalwpp{ } But did not work either.

Kim

25 Feb 2009, 5:52 AM
#2
jwitt98 avatar

jwitt98

New Zenner

Join Date:
Feb 2009
Posts:
95
Plugin Contributions:
0

Re: Checkout Page-Paypal-radio buttons

have you tried:

body#checkoutBody input {
float: left;
}

to target only pages with the checkoutBody id?

25 Feb 2009, 10:39 PM
#3
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Checkout Page-Paypal-radio buttons

jwitt98:

have you tried:

body#checkoutBody input {
float: left;
}

to target only pages with the checkoutBody id?

:clap::clap:That worked! I added to my stylesheet.

Do you know what to add for the What's this? for the cvv help?
It is offcenter too. And I can not seem to find code for it.

Thanks, Kim

26 Feb 2009, 6:37 AM
#4
jwitt98 avatar

jwitt98

New Zenner

Join Date:
Feb 2009
Posts:
95
Plugin Contributions:
0

Re: Checkout Page-Paypal-radio buttons

OK, I'll take a guess

body#checkoutBody.ccinfo a{ }

add your styling between the brackets

28 Feb 2009, 11:02 PM
#5
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Checkout Page-Paypal-radio buttons

jwitt98:

OK, I'll take a guess

body#checkoutBody.ccinfo a{ }

add your styling between the brackets

I tried it and did not work. I used FF css view style and it showed:

a:link, #navEZPagesTOC ul li a as the code. But this is also tied to my categories at the top and messes them up when I try to fix. :frusty:

Kim