tsbarrett Posted October 7, 2020 Share Posted October 7, 2020 Site URL: http://www.godsofmarssaga.com Hi there, I tried to use a custom code to make just a line where the email address goes (instead of a box). But then the text "Email address" disappeared. Need help bringing it back and changing it's color to white -- while everything else stays the same (black input background etc). Here's my CSS currently: /*** NEWSLETTER FORM FIELDS ***/ .newsletter-form-field-wrapper input:focus { color: white; } .newsletter-form-field-element { background: transparent !important; border-top: none !important; border-left: none !important; border-right: none !important; border-bottom: solid 2px #ffcc00 !important; } *Also, a note - I am using the Business plan for the site if that matters in any way with the code. Looking for help thanks! JRo 1 Link to comment
tuanphan Posted October 8, 2020 Share Posted October 8, 2020 What is access password? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
JRo Posted October 8, 2020 Share Posted October 8, 2020 I am having the same issue. I need to change the Newsletter & Contact form placeholder text from Black to White. A ghost plugin gives me lines on the Newsletter, but the prompt text cannot be read on black backround. Any help is appreciated. Thank you Link to comment
JRo Posted October 8, 2020 Share Posted October 8, 2020 I added this and was able to get the "first name" " last name" "email address" prompts to be white, however when a user types their words still appear black ( invisible to user) footer.sections input[type="text"] { border-color: white; } footer.sections input[type="text"]::placeholder { color: white !important; } Link to comment
Solution tuanphan Posted October 10, 2020 Solution Share Posted October 10, 2020 On 10/8/2020 at 8:01 PM, tsbarrett said: ronin Add to Home > Design > Custom CSS .homepage .field.email input, .homepage .field.email input::placeholder, .homepage .field.email input:focus { color: white !important; } On 10/8/2020 at 11:32 PM, JRo said: I am having the same issue. I need to change the Newsletter & Contact form placeholder text from Black to White. A ghost plugin gives me lines on the Newsletter, but the prompt text cannot be read on black backround. Any help is appreciated. Thank you Can you share site url? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
tsbarrett Posted October 10, 2020 Author Share Posted October 10, 2020 Thank you SO much! Link to comment
tuanphan Posted October 12, 2020 Share Posted October 12, 2020 On 10/8/2020 at 11:32 PM, JRo said: I am having the same issue. I need to change the Newsletter & Contact form placeholder text from Black to White. A ghost plugin gives me lines on the Newsletter, but the prompt text cannot be read on black backround. Any help is appreciated. Thank you Can you share site url? We can check easier. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
isabellewarren Posted January 17, 2021 Share Posted January 17, 2021 On 10/12/2020 at 3:50 PM, tuanphan said: Can you share site url? We can check easier. Has this been solved? I have the same problem. I was able to get the current "Email Address" to white but when you type in the box it's still black. I couldn't figure out the code to make it white too. This is the code I'm currently using. Link to the website is mixbar.com/home Link to comment
tuanphan Posted January 17, 2021 Share Posted January 17, 2021 1 hour ago, isabellewarren said: Has this been solved? I have the same problem. I was able to get the current "Email Address" to white but when you type in the box it's still black. I couldn't figure out the code to make it white too. This is the code I'm currently using. Link to the website is mixbar.com/home Add to Design > Custom CSS footer.sections input[name="email"] { color: white !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
AnnaGloverInteriors Posted February 26, 2021 Share Posted February 26, 2021 Hi, Can anyone help with changing the background colour of the email address box in the newsletter block? It is white and I want it to match the background hsl(20, 40%, 94%). Thanks so much. Link to comment
tuanphan Posted March 2, 2021 Share Posted March 2, 2021 On 2/27/2021 at 1:42 AM, AnnaGloverInteriors said: Hi, Can anyone help with changing the background colour of the email address box in the newsletter block? It is white and I want it to match the background hsl(20, 40%, 94%). Thanks so much. Can you share link to page where you use newsletter block? We can help easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Skovbo Posted August 13, 2021 Share Posted August 13, 2021 My issue is that although I've tried changing the color of the text in the newsletter box of my footer, it's only the border of the newsletter box, which changes color. I've used this code: #block-yui_3_17_2_1_1622837024363_5302 .newsletter-form input { color: #fefaec !important; opacity: 1; border-bottom-color: #fefaec; } Url: https://mathiasskovbo.com/ Link to comment
tuanphan Posted August 14, 2021 Share Posted August 14, 2021 On 8/14/2021 at 3:46 AM, Skovbo said: My issue is that although I've tried changing the color of the text in the newsletter box of my footer, it's only the border of the newsletter box, which changes color. I've used this code: #block-yui_3_17_2_1_1622837024363_5302 .newsletter-form input { color: #fefaec !important; opacity: 1; border-bottom-color: #fefaec; } Url: https://mathiasskovbo.com/ Hi. Change first, last name in footer? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Skovbo Posted August 14, 2021 Share Posted August 14, 2021 1 hour ago, tuanphan said: Hi. Change first, last name in footer? Want to change the color of the text in the newsletter box in the footer Link to comment
tuanphan Posted August 16, 2021 Share Posted August 16, 2021 On 8/15/2021 at 6:19 AM, Skovbo said: Want to change the color of the text in the newsletter box in the footer Use this CSS footer.sections input::placeholder { color: #fefaec !Important; } alexplesner and Skovbo 2 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Skovbo Posted August 17, 2021 Share Posted August 17, 2021 On 8/16/2021 at 8:59 AM, tuanphan said: Use this CSS footer.sections input::placeholder { color: #fefaec !Important; } Thank you! Link to comment
CiuriFiori Posted October 26, 2021 Share Posted October 26, 2021 Hi, Can anyone help with changing the background colour of the email address box in the newsletter block in the footer? https://panda-orb-f2jk.squarespace.com/home Thanks so much, Adriana Link to comment
tuanphan Posted October 29, 2021 Share Posted October 29, 2021 On 10/26/2021 at 8:53 PM, CiuriFiori said: Hi, Can anyone help with changing the background colour of the email address box in the newsletter block in the footer? https://panda-orb-f2jk.squarespace.com/home Thanks so much, Adriana Add to Design > Custom CSS footer.sections input { background-color: green !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
CiuriFiori Posted November 8, 2021 Share Posted November 8, 2021 Thank you very much 🙏 @tuanphan Link to comment
Tino Posted March 17, 2022 Share Posted March 17, 2022 Thanks to everyone on this thread. I was able to make some great modifications to the email signup in the footer, including changing the active input color to blue, and removing the background and three sides of the input field — but am still stuck with this grey type for the placeholder "Email Address" input field. I've tried the various code offered here, but can't seem to shake it... If anyone knows how to get this to change color (and even to change the words themselves: I'd really prefer just "EMAIL"!) that'd be great.... otheranimals.us/papa pw: daddy Link to comment
tuanphan Posted March 19, 2022 Share Posted March 19, 2022 On 3/18/2022 at 6:19 AM, Tino said: Thanks to everyone on this thread. I was able to make some great modifications to the email signup in the footer, including changing the active input color to blue, and removing the background and three sides of the input field — but am still stuck with this grey type for the placeholder "Email Address" input field. I've tried the various code offered here, but can't seem to shake it... If anyone knows how to get this to change color (and even to change the words themselves: I'd really prefer just "EMAIL"!) that'd be great.... otheranimals.us/papa pw: daddy It looks like you changed color? To change text, add this code to Papa Page Header <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function() { $('.email input').attr('placeholder','Email'); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Graphicaljordan Posted March 13, 2023 Share Posted March 13, 2023 (edited) Hi, I've tried all the varieties of code above but still can't seem to change the 'email address' text to white in my newsletter sign up block in the footer. Any ideas? It appears to work on the homepage, but not others! Thanks https://daffodil-groundhog-6c5l.squarespace.com/ pw: bernat Edited March 13, 2023 by Graphicaljordan Link to comment
tuanphan Posted March 16, 2023 Share Posted March 16, 2023 On 3/13/2023 at 4:31 PM, Graphicaljordan said: Hi, I've tried all the varieties of code above but still can't seem to change the 'email address' text to white in my newsletter sign up block in the footer. Any ideas? It appears to work on the homepage, but not others! Thanks https://daffodil-groundhog-6c5l.squarespace.com/ pw: bernat Hi. I see you solved with this code? .homepage .field.email input, .homepage .field.email input::placeholder, .homepage .field.email input:focus { color: #fff !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Graphicaljordan Posted March 16, 2023 Share Posted March 16, 2023 Hi Sorry, on the homepage this is working But 'email address' still appears as black text on black background on the following pages:https://daffodil-groundhog-6c5l.squarespace.com/abouthttps://daffodil-groundhog-6c5l.squarespace.com/explorehttps://daffodil-groundhog-6c5l.squarespace.com/collaborationshttps://daffodil-groundhog-6c5l.squarespace.com/journal and elsewhere on the site. Could you help making the 'email address' text white across the full site? Thanks, Jordan Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment