tapukatata Posted October 9, 2013 Share Posted October 9, 2013 I need to increase the font size and color of cashondelivery text. Anyone can help me? thank you! Link to comment Share on other sites More sharing options...
Carolina Custom Designs Posted October 9, 2013 Share Posted October 9, 2013 As I recall this module does not have its own CSS but uses the default settings of global.css. If I'm correct I would simply add a class to the output you posted and then increase the font using the new class. Hope that helps! Marty Shue 1 Link to comment Share on other sites More sharing options...
tapukatata Posted October 9, 2013 Author Share Posted October 9, 2013 sorry but I don't have many knowledges and don't know how to do it. I attach global.css Can you check it and add new class. thank you! global.css Link to comment Share on other sites More sharing options...
Carolina Custom Designs Posted October 9, 2013 Share Posted October 9, 2013 sorry but I don't have many knowledges and don't know how to do it. Unfortunately, I don't do jobs via the forum. I told you how to do it but that is as far as I can go. If you don't know how to do it I suggest try posting in this forum. If no one there can help you feel free to contact me through our company website. Marty Shue Link to comment Share on other sites More sharing options...
vekia Posted October 9, 2013 Share Posted October 9, 2013 you can do it in global.css file you've got there styles: .payment_module { position: relative; padding-top: 20px; border-top: 1px dotted #ccc; text-transform: uppercase; } just add somewhere font-size:20px; etc. (you can increase / decrease value of the param - 20px, for example: 16px) Link to comment Share on other sites More sharing options...
maio Posted October 9, 2013 Share Posted October 9, 2013 you can also use the rem unit to increase/decrease the font size, rem units is sometimes better of px, if you feel like try in your case for example 1.2 rem the reason why rem is prefered is that down-upscaling px on old mobile browsers may give some problems Link to comment Share on other sites More sharing options...
tapukatata Posted October 10, 2013 Author Share Posted October 10, 2013 .payment_module {position: relative;padding-top: 20px;border-top: 1px dotted #ccc;text-transform: uppercase;} With that code I increase / decrease font-size for whole 5 step checkout page . I want to increase only Cash on Delivery text size. Link to comment Share on other sites More sharing options...
maio Posted October 10, 2013 Share Posted October 10, 2013 try .paiement_block .payment_module {position: relative;padding-top: 20px;border-top: 1px dotted #ccc;text-transform: uppercase; font-size:rem:1.2;} or you can directly hardcode it in the tpl file (should be payment_module or in french paiement...) adding <....... style:"font-size:rem:1.2"> Link to comment Share on other sites More sharing options...
vekia Posted October 10, 2013 Share Posted October 10, 2013 if you want to change it only for COD - you have to add separate class to block with payment Link to comment Share on other sites More sharing options...
Carolina Custom Designs Posted October 10, 2013 Share Posted October 10, 2013 if you want to change it only for COD - you have to add separate class to block with payment And we have come full circle :) This is exactly what I advised in the very first response. Marty Shue 1 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