Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1190289
    gabriellavanrij
    Participant

    Hi there! This is my website:

    http://gabriella.global/contact/

    I would like to change the text color of “name” and “email” from black to white. Please see attached image.

    I am using latest WP, latest cornerstone, child version of latest X.

    Thanks.

    #1190308
    Lely
    Moderator

    Hello There,

    From your child theme style.css file, look for the following:

    .page-id-2228 p, label {
    	color: black!important;
    }

    Update to this:

    .page-id-2228 p, .page-id-2228 label {
    	color: black!important;
    }

    And this:

    .page-id-2226 p, label {
    	color: black!important;
    }

    Update to this:

    .page-id-2226 p, .page-id-2226 label {
    	color: black!important;
    }

    And this:

    .page-id-2227 p, label {
    	color: black!important;
    }

    To this:

    .page-id-2227 p, .page-id-2227  label {
    	color: black!important;
    }

    Those custom CSS declares all your labels to be black. The important overrides all other CSS styles.

    Hope this helps.

  • <script> jQuery(function($){ $("#no-reply-1190289 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>