• Resolved Tsunamy

    (@tsunamy)


    Hello @davidallouch,
    First of all, thank you very much for your wonderful work, congratulations.
    I wanted to ask you something:
    -How can I change the color of the box as well as the color of the letters from inside the box, as I show in the attached figure?
    -Because there are white letters and a white box you can not see anything inside the box as you can see.

    Thank you very much
    I look forward to your help.
    Cheers.

    View post on imgur.com


    How can I change the colors?” />

    • This topic was modified 7 years, 9 months ago by Tsunamy.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @tsunamy,

    There is no setting to change the colors of that elements. If you have basic programming skills… use wpmm_header hook to add new CSS properties.

    
    // place it in functions.php of your active theme
    add_action('wpmm_head', 'wpmm_custom_css');
    
    function wpmm_custom_css(){
     // the css you need 
     echo '<style>
           .wrap form.subscribe_form { border: 3px solid #000 !important; }
           .wrap form.subscribe_form input[type="submit"] { border-left: 3px solid #000 !important; }
           .wrap form.subscribe_form input.email_input { color: #000 !important; }
           .wrap form.subscribe_form input.email_input::-webkit-input-placeholder {
    		  color: #000 !important;
           }
           .wrap form.subscribe_form input.email_input:-moz-placeholder {
    		  color: #000 !important;
           }
           .wrap form.subscribe_form input.email_input::-moz-placeholder {
    		  color: #000 !important;
    	}
    	.wrap form.subscribe_form input.email_input:-ms-input-placeholder {
    		  color: #000 !important;
    	}
           </style>';
    }
    

    Thanks.

    • This reply was modified 7 years, 9 months ago by George J.
    • This reply was modified 7 years, 9 months ago by George J.
    Thread Starter Tsunamy

    (@tsunamy)

    Perfect George J (@georgejipa), thank you very much worked perfectly.
    Thanks for everything.

    You’re welcome. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Color of the Box and Letters’ is closed to new replies.