- This topic has 1 reply, 2 voices, and was last updated 12 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › shopping cart formatting
Tagged: paypal button, shopping cart formatting
The formatting of my shopping cart is very off. The terms and conditions are scrunched together on one side. The checkout with paypal button is not centered or right justified. how can I get this to look “nicer” (http://www.medschoolcoach.com/sign-up-now/) Please add a service to see an example. thanks
Your theme’s CSS is messing things up a bit. You can do this theme test to verify:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
You have the following CSS in your theme which is forcing all labels to be 70px! This is why the terms and conditions lable is scrunched because it is trying to fit within that 70px. Remove the width: 70px;
line from the CSS and it will behave as normal.
label {
padding-right: 15px;
float: left;
width: 70px;
}
This post will help making the checkout button right aligned: