Mowgli Posted August 21, 2023 Posted August 21, 2023 I have uploaded two custom fonts. The first (Brandon Grotesque) font I have assigned to the entire website, the second (Didot) is to be used for H1, and H2. Now I have a text block in H2 on my homepage that I would like to link to my contact page, but as soon as I put a link on the text, the text block changes to the Brandon Grotesque font, although the editor still tells me that I am writing in H2. Does anyone know the solution to this problem?
Ziggy Posted August 21, 2023 Posted August 21, 2023 Can you share how you applied the custom fonts and your website URL? 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! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
Mowgli Posted August 21, 2023 Author Posted August 21, 2023 Yeah sure! Quote /* Eigene Schrift */ @font-face { font-family: Brandon Grotesque Light; src: url(https://static1.squarespace.com/static/64c3bb611eee5633855bcae7/t/64df2b36d5cb3d7012ed4596/1692347190859/Brandon+Grotesque+Light.otf); } /* ALLE Texte überall */ html * {font-family: 'Brandon Grotesque Light'} /* Eigene Schrift */ @font-face { font-family: Didot Bold; src: url(https://static1.squarespace.com/static/64c3bb611eee5633855bcae7/t/64df2b302db1e37ccef65a7f/1692347184544/Didot+Bold.otf); } /* Überschrift 1 */ h1 {font-family: 'Didot Bold';} /* Überschrift 2 */ h2 {font-family: 'Didot Bold';} // ersetzen der Unterstreichung des Links a { text-decoration:none!important; }
Solution Ziggy Posted August 21, 2023 Solution Posted August 21, 2023 This is a very broad way of applying the font: html * {font-family: 'Brandon Grotesque Light'} Try this instead: // Eigene Schrift @font-face { font-family: 'Brandon Grotesque Light'; src: url('https://static1.squarespace.com/static/64c3bb611eee5633855bcae7/t/64df2b36d5cb3d7012ed4596/1692347190859/Brandon+Grotesque+Light.otf'); } // ALLE Texte überall p, .sqsrte-large, .sqsrte-small, h3, h4, p a, .sqsrte-large a, .sqsrte-small a, h3 a, h4 a { font-family: 'Brandon Grotesque Light'; } // Eigene Schrift @font-face { font-family: 'Didot Bold'; src: url('https://static1.squarespace.com/static/64c3bb611eee5633855bcae7/t/64df2b302db1e37ccef65a7f/1692347184544/Didot+Bold.otf'); } // Überschrift 1 h1, h1 a { font-family: 'Didot Bold'; } // Überschrift 2 h2, h2 a { font-family: 'Didot Bold'; } // ersetzen der Unterstreichung des Links a { text-decoration:none !important; } 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! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
Mowgli Posted August 21, 2023 Author Posted August 21, 2023 Thanks a lot! That finally worked! <3 Ziggy 1
Ziggy Posted August 22, 2023 Posted August 22, 2023 12 hours ago, Mowgli said: Thanks a lot! That finally worked! ❤️ Excellent! tuanphan 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! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment