mju Posted March 21, 2022 Share Posted March 21, 2022 Site URL: https://whitneydesignstudios.com/workshops Can't get my custom font to work. I see others have the same problem and followed the recommendations to their CSS, but mine still doesn't work. Here's my code. Thx in advance! @font-face { font-family: ‘SilverSouthScript’; src: url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fe61da05fa07e9dd68285/1647306269246/SilverSouthScript.woff') format('woff'); src: url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fea4e874b7b39d130d9e2/1647307342927/SilverSouthScript.woff2') format('woff2'); } h3 { font-family: 'SilverSouthScript' !important; } Link to comment
Jia Posted March 21, 2022 Share Posted March 21, 2022 2 hours ago, mju said: Site URL: https://whitneydesignstudios.com/workshops Can't get my custom font to work. I see others have the same problem and followed the recommendations to their CSS, but mine still doesn't work. Here's my code. Thx in advance! @font-face { font-family: ‘SilverSouthScript’; src: url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fe61da05fa07e9dd68285/1647306269246/SilverSouthScript.woff') format('woff'); src: url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fea4e874b7b39d130d9e2/1647307342927/SilverSouthScript.woff2') format('woff2'); } h3 { font-family: 'SilverSouthScript' !important; } Hi, slight error in the way your custom font code was formatted. Try this one instead and let me know how it goes 🙂 @font-face { font-family: 'SilverSouthScript'; src: url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fea4e874b7b39d130d9e2/1647307342927/SilverSouthScript.woff2') format('woff2'), url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fe61da05fa07e9dd68285/1647306269246/SilverSouthScript.woff') format('woff'); } Please give this a 👍 if it helps. Make sure to quote me or tag me in your reply, otherwise I won't be notified. www.sevenstars.studio www.instagram.com/sevenstars.studio Link to comment
mju Posted March 22, 2022 Author Share Posted March 22, 2022 On 3/21/2022 at 12:49 PM, Jia said: Hi, slight error in the way your custom font code was formatted. Try this one instead and let me know how it goes 🙂 @font-face { font-family: 'SilverSouthScript'; src: url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fea4e874b7b39d130d9e2/1647307342927/SilverSouthScript.woff2') format('woff2'), url('https://static1.squarespace.com/static/557cbcf6e4b0c6af002a862b/t/622fe61da05fa07e9dd68285/1647306269246/SilverSouthScript.woff') format('woff'); } That was it!! Thank you so much. Jia 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