Changing Font Color in Sign-Up Module

More
04 Mar 2011 03:00 #795 by dmason
I am wondering if it is possible to lighten the color of the font that appears in the form entries of the sign-up module? I would like the Email Address *, First Name, Last Name to be light gray.
[img

Thanks.

Please Log in or Create an account to join the conversation.

More
07 Mar 2011 10:57 #800 by pete
Hi dmason,

That's basic css about which you can find lots of tutorials online. However, you can access these elements with this css tag:

.mcsignup .inputbox

So you would have to add something like this to your css:

.mcsignup .inputbox {
color: #616161;
}

You might also want to add a different color for the active state like this:

.mcsignup .inputbox:hover, .mcsignup .inputbox:focus, .mcsignup .inputbox:active { }

Kind regards,
Pete

Please Log in or Create an account to join the conversation.

More
07 Mar 2011 20:03 #811 by dmason
Thanks for your reply. Can you tell me which file it is that needs to be modified, and where is this file located?

Thanks,

Please Log in or Create an account to join the conversation.

More
07 Mar 2011 21:24 #813 by pete
Sorry, forgot to add it to my previous post.

/modules/mod_mailchimpsignup/assets/css/default.css

Kind regards,
Pete

Please Log in or Create an account to join the conversation.

More
07 Mar 2011 23:23 #816 by dmason
Awesome. Thank you!

Please Log in or Create an account to join the conversation.

More
30 May 2012 02:26 #2306 by wldct
Hey

If i wanted to alter the text that is displayed in the actual fields, for example:

"Email Address*" changed to "Please Enter Your Email Address"

any idea how i might achieve that? I've looked through the language file and it doesn't appear to be handled there.

Please Log in or Create an account to join the conversation.