Tagged: CONTACT FORM, slider
Hello. Absolutely love enfold! I have a couple questions
1. How can I center the text at the bottom of the slider? I love how it can sit at the bottom like that but I prefer it to be centered.
2. How can I change the input fields on the contact form to the color #242365? How can I make the text for the input fields to be white?
Thanks.
Hey mbrow155,
Please try the following in Quick CSS under Enfold->General Styling:
1.
.slideshow_inner_caption {
text-align:center;
}
2.
input[type='text'] {
background-color: #242365;
color: white;
}
Best regards,
Rikard
1. worked like a charm
2. This code didn’t work. Appears the field is still a darker blue and the text is the same color. Any other possibilites?
Thanks.
Hi mbrow155,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#top .socket_color .input-text,
#top .socket_color input[type='text'],
#top .socket_color input[type='input'],
#top .socket_color input[type='password'],
#top .socket_color input[type='email'],
#top .socket_color input[type='number'],
#top .socket_color input[type='url'],
#top .socket_color input[type='tel'],
#top .socket_color input[type='search'],
#top .socket_color textarea,
#top .socket_color select
{
background-color: #242365;
color: white;
}
#top .socket_color input[type='text']::placeholder,
#top .socket_color textarea::placeholder {
color: #e1e1e1;
}
If you need further assistance please let us know.
Best regards,
Victoria