JanHavlicek Posted April 27, 2014 Share Posted April 27, 2014 Hi, I'm trying to change the design of PayPal paying method. Because it looks totally different and ugly compared to other (default) payment methods. See the attached picture. Do you have any idea, where can I change the look of PayPal payment method? I want to have the same look as default methods, including background image on the left. I realized, that the background images are set in global.css file, line 7330 and so on..., but obviously there isn't line for PayPal. I also have no idea, how to add the "arrow" on the right side and gray background color. I'm using the most recent version of prestashop - 1.6.0.6 and default bootstrap theme Thank you for your help. Link to comment Share on other sites More sharing options...
rayleic Posted May 7, 2014 Share Posted May 7, 2014 Me to, this must look better and prefessional as it is a online shop! The default one is not acceptable Link to comment Share on other sites More sharing options...
wzshop Posted November 7, 2014 Share Posted November 7, 2014 Hi, Just add the css code for the paypal payment option. Change the code around line 7350 to: p.payment_module a.cheque:after, p.payment_module a.bankwire:after, p.payment_module a.cash:after, p.payment_module a#paypal_process_payment:after { display: block; content: "\f054"; position: absolute; right: 15px; margin-top: -11px; top: 50%; font-family: "FontAwesome"; font-size: 25px; height: 22px; width: 14px; color: #777777; } See the 'p.payment_module a#paypal_process_payment:after' this generates the arrow:) Add this code in your css to get the white background: p.payment_module a#paypal_process_payment { background: #fbfbfb;} Hope this helps. Link to comment Share on other sites More sharing options...
wzshop Posted November 7, 2014 Share Posted November 7, 2014 (edited) Also i had to change some css to get the same hover color for all payment options: p.payment_module a:hover { background-color: #f6f6f6 !important; } (added '!important;') Cheers. Edited November 7, 2014 by wzshop (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now