- This topic has 2 replies, 3 voices, and was last updated 7 years, 7 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 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 › WP eStore F.A.Q/Instructions › Right Align the Checkout Button in the eStore Shopping Cart
If you want to right align the checkout button section in the shopping cart then do the following:
Use the following plugin to add your custom CSS code to override the default CSS styles:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Add the following block of CSS code to the custom CSS plugin
.eStore_cart_checkout_button{
text-align:right !important;
}
Alternatively, do the following:
Open the “wp_eStore_style.css” file and look for the following CSS code:
.eStore_cart_checkout_button{
text-align:left;
}
Once you find it change it to the following:
.eStore_cart_checkout_button{
text-align:right;
}
That should do the job.
Thank you. That works.
We will add a settings option for this in the plugin.