Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #780256

    Hello,

    The text font color in the checkout page for Woo is white thus making it very hard to read. I’m assuming this has something to do with predefined color theme that I chose? How can I modify it so that the font is black while keeping the same color theme for the site?

    Thank you,

    Duncan

    #780625

    Hey murdochduncan,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    #top div .quantity input.qty { color: #000;}
    
    input[type=text]::-webkit-input-placeholder {
    	color: #000000;
    }
    input[type=text]::-moz-placeholder {
    	color: #000000;
    }
    input[type=text]:-ms-input-placeholder {
    	color: #000000;
    }
    textarea#order_comments::-webkit-input-placeholder {
    	color: #000000;
    }
    textarea#order_comments::-moz-placeholderplaceholder {
    	color: #000000;
    }
    textarea#order_comments:-ms-input-placeholder {
    	color: #000000;
    }
    textarea#order_comments::placeholder {
        color: #000000;
      
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #780950

    Hello Again,

    The code didn’t work in the Quick Css and I’ll need assistance entering it the other way if you please.

    Thank you,

    Duncan

    #780954

    Hello again. I have entered the code into custom.css after all with “success!” But the code does not alter the text color to make it more legible.

    Do you have another code or another way?

    Thank you,

    Duncan

    #781507

    The code didn’t work- Is there another fix for this?

    Thank you,

    Duncan

    #781764

    Hi,
    I have added !important; to Victoria code please try it and clear your cache :)
    Try this code in the General Styling > Quick CSS field:

    #top .main_color .input-text, #top .main_color input[type='text'] {
    color: #000!important; 
    }
    #top div .quantity input.qty { color: #000!important; }
    
    input[type=text]::-webkit-input-placeholder {
    	color: #000000!important; 
    }
    input[type=text]::-moz-placeholder {
    	color: #000000!important; 
    }
    input[type=text]:-ms-input-placeholder {
    	color: #000000!important; 
    }
    textarea#order_comments::-webkit-input-placeholder {
    	color: #000000!important; 
    }
    textarea#order_comments::-moz-placeholderplaceholder {
    	color: #000000!important; 
    }
    textarea#order_comments:-ms-input-placeholder {
    	color: #000000!important; 
    }
    textarea#order_comments::placeholder {
        color: #000000!important; 
      
    }
    

    Best regards,
    Mike

    #781842

    It works!!!

    Thank you Mike and Victoria for your wizardry!!!

    Duncan

    #781858

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Woo and text fields’ is closed to new replies.