Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @clinton31,
    Upload the following plugin inside the plugins directory and Activate the plugin going to WP Dashboard > Plugins > Installed Plugins > MSP Woocommerce CSS Plugin.
    The code should make text inside the woocommerce forms Black.

    <?php
    /*
    Plugin Name:   MSP Woocommerce CSS Plugin
    Plugin URI:    https://github.com/msp977/kalpana/blob/master/woocommerce-forms-css
    Description:   Add a custom CSS stylesheet file to WordPress
    Version:       1.0
    Author:        Madhusudan Pokharel
    Author URI:    https://twitter.com/msp977
    */
    
    function msp_css(){
    ?>
    <style>
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row textarea,
    .woocommerce-page form .form-row input.input-text,
    .woocommerce-page form .form-row select,
    .woocommerce form .form-row input.input-number,
    .woocommerce .quantity input[type="number"]{
    color: #000 !important;
    }
    </style>
    <?php }
    add_action('wp_head','msp_css');
    

    Best regards,
    Madhusudan

    This worked perfectly for me except for one spot – the Additional Information on each product page. Is there a way to modify the plugin to cover that area as well?

    Thanks again

    Hello @onyxeyez,
    Can you share your site url so that I can have better look upon it?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How Do I Change the Checkout Field Color so that it is visible?’ is closed to new replies.