thormodkvam Posted October 23, 2019 Share Posted October 23, 2019 Hi all, I have just published a landing/cover page for a new concert series to be launched in a few months. All is working well, except for the Newsletter Form, where certain fields have pre-set subheadings in English (such as First Name and Last Name, whereas you can easily edit the heading, please see attached screenshot). This looks very amateur when the rest of the site is in Norwegian. It would be even better if we could use the Newsletter Signup function with Email Campaign integration, but here none of the fields are editable (so the result in terms of lack of translated words is even worse than when using the Newsletter Form). Another question is whether it would be possible to add fonts also to Cover Pages. I've already inserted custom CSS for a few fonts, but I can't find them when designing the Cover Page. Slightly annoying, as there's already printed graphics using fonts that are not available as a standard in Squarespace. Hope someone is able to help! PS: This is my first Circle Forum post! Link to comment
tuanphan Posted October 23, 2019 Share Posted October 23, 2019 @thormodkvam If you share site url, i can give you the code to translate first/last name 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
thormodkvam Posted October 26, 2019 Author Share Posted October 26, 2019 On 10/24/2019 at 12:40 AM, tuanphan said: @thormodkvam If you share site url, i can give you the code to translate first/last name Thanks, @tuanphan! The site URL is https://www.aulaserien.no. Link to comment
tuanphan Posted October 26, 2019 Share Posted October 26, 2019 @thormodkvam Add to Home > Design > Custom CSS /* First Name */ .first-name label { visibility: hidden; } .first-name input { visibility: visible; } .first-name label:after { content: "ABC"; color: #333; display: block; visibility: visible; margin-top: -15px; font-family: monospace; } /* Last Name */ .last-name label { visibility: hidden; } .last-name input { visibility: visible; } .last-name label:after { content: "ABC"; color: #333; display: block; visibility: visible; margin-top: -15px; font-family: monospace; } 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
thormodkvam Posted October 27, 2019 Author Share Posted October 27, 2019 @tuanphan, thank you so much! Adding it into Custom CSS didn't work, but in settings it does say that custom CSS won't work with Cover Pages. I guess there is no way to override this? Perhaps enabling Developer Mode could work? Link to comment
tuanphan Posted October 27, 2019 Share Posted October 27, 2019 @thormodkvam Try Cover Page Settings > Code Injection > Header and insert this code <style> /* First Name */ .first-name label { visibility: hidden; } .first-name input { visibility: visible; } .first-name label:after { content: "ABC"; color: #333; display: block; visibility: visible; margin-top: -15px; font-family: monospace; } /* Last Name */ .last-name label { visibility: hidden; } .last-name input { visibility: visible; } .last-name label:after { content: "ABC"; color: #333; display: block; visibility: visible; margin-top: -15px; font-family: monospace; } </style> 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
thormodkvam Posted October 27, 2019 Author Share Posted October 27, 2019 @tuanphan, it worked – fantastic! Thanks, this was really helpful and very kind of you! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.