ProjectAncestry Posted September 22, 2023 Share Posted September 22, 2023 Hi everyone, Would it be possible to make a H1 a different colour on mobile? If you look at our homepage, the text sits well on the background image. On mobile view it doesn't work. projectancestry.com (homepage) Options: Change the colour of the text on mobile to white, so that it stands out on the dark section of the image. Or Hide the text on mobile and instead make it show in the section below - no idea if that's achievable with CSS. Open to any other solutions! Thank you ! Link to comment
Ziggy Posted September 22, 2023 Share Posted September 22, 2023 You can change the text colour just on mobile with this Custom CSS, but you may want to target just the one block on that page. @media only screen and (max-width:767px) { h1 { color:white; }} ProjectAncestry 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
ProjectAncestry Posted September 22, 2023 Author Share Posted September 22, 2023 Thanks for your super fast reply Ziggy! Could you correct this for me? @media only screen and (max-width:767px) {h1 div#block-yui_3_17_2_1_1694442169502_85889 color:white;}} Link to comment
Ziggy Posted September 22, 2023 Share Posted September 22, 2023 @media only screen and (max-width:767px) { #block-yui_3_17_2_1_1694442169502_85889 { h1 { color:white; }}} ProjectAncestry 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
ProjectAncestry Posted September 22, 2023 Author Share Posted September 22, 2023 Thank you Ziggy! For some reason it only changed the first line of text, even though it is only one block ID? Link to comment
Ziggy Posted September 22, 2023 Share Posted September 22, 2023 You may have the text in multiple blocks? Or you could target the section ID? Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
ProjectAncestry Posted September 22, 2023 Author Share Posted September 22, 2023 It's only one text block... Link to comment
Ziggy Posted September 22, 2023 Share Posted September 22, 2023 15 minutes ago, ProjectAncestry said: It's only one text block... It's it all heading 1? Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
ProjectAncestry Posted September 23, 2023 Author Share Posted September 23, 2023 Ahh, no. The second line of text is H2. Should I move it into a separate text block? Thank you so much for your help. Link to comment
Ziggy Posted September 26, 2023 Share Posted September 26, 2023 Keep them in one text block, I've adjusted the code to make it effect Heading 1 and Heading 2 @media only screen and (max-width:767px) { #block-yui_3_17_2_1_1694442169502_85889 { h1, h2 { color:white; } } } ProjectAncestry 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
ProjectAncestry Posted September 27, 2023 Author Share Posted September 27, 2023 Thank you Ziggy. Ziggy 1 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