Jump to content

How can I edit cashondelivery


Recommended Posts

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

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

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...