Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created January 9, 2016 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/49156e6e997b27b42d38 to your computer and use it in GitHub Desktop.
Save JudeRosario/49156e6e997b27b42d38 to your computer and use it in GitHub Desktop.
add_action('wp_footer', 'custom_CSS') ;
function custom_CSS() {
echo <<<'CSS'
<style>
.incsub-mailchimp-widget input[type="email"] {
border: 1px solid #ffea00 !important;
font-size: 13px;
color: #aaa9a9;
padding: 8px 15px !important;
margin-right: 1%;
width: 100% !important;
}
</style>
CSS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment