• Resolved gianlucaweb

    (@gianlucaweb)


    Hi guys, im using your great plugin. But i have a trouble, i would like to change color of “contact us” box. I tried to put in appearance->editor

    .background .contact_us { color: #000;
    border-color: #000;}

    but it doesnt work. Could you help me, please. Thank you very much!

    • This topic was modified 9 years, 3 months ago by gianlucaweb.
Viewing 1 replies (of 1 total)
  • Hello @gianlucaweb,

    You can add custom css by using wpmm_head hook. I know it is a little bit complicated, but works great.

    // 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>
           .background .contact_us { color: #000; border-color: #000;}
           </style>';
    }

    In a future version I will add a custom css setting, but right now I do not have an ETA.

    Thanks.

Viewing 1 replies (of 1 total)

The topic ‘Contact us box’ is closed to new replies.