edebs Posted September 5, 2023 Posted September 5, 2023 I'm having issues adding a specific adobe font onto my website - Cinema Script. I am able to successfully add another adobe font just fine, but I can not get Cinema Script to show up in the font panel. On the adobe side, I have tried grouping it in the same project as my other font and as its own seperate project. Any advice would be much appreciated! Here is my code: @font-face { font-family: DunbarTall; src: url(https://use.typekit.net/wns4nid.css); } font-family: "dunbar-tall", sans-serif; font-weight: 800; font-style: normal; @font-face { font-family: cinema-script; src: url(https://use.typekit.net/wns4nid.css); } font-family: "cinema-script", sans-serif; font-weight: 400; font-style: normal; h3 { font-family: cinema-script, serif; }
Lesum Posted September 5, 2023 Posted September 5, 2023 @edebs Your code has errors. Try adding this code: @font-face { font-family: "DunbarTall"; src: url("https://use.typekit.net/wns4nid.css"); } @font-face { font-family: "cinema-script"; src: url("https://use.typekit.net/wns4nid.css"); } h3 { font-family: "cinema-script", sans-serif !important; font-weight: 400; font-style: normal; } If it doesn't work, please feel free to share your site URL so we can take a look. Thanks! If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee?
edebs Posted September 5, 2023 Author Posted September 5, 2023 @Lesum I tried that and it still won't load the script font. How do I share my site URL?
Lesum Posted September 6, 2023 Posted September 6, 2023 @edebs You can find a detailed guide on sharing your site URL, even if it's not published, in this support article: https://support.squarespace.com/hc/en-us/articles/205815528-Site-wide-passwords If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee?
edebs Posted September 6, 2023 Author Posted September 6, 2023 @Lesum here is the site: https://robin-radish-llkn.squarespace.com/
tuanphan Posted September 7, 2023 Posted September 7, 2023 The font already works to me 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!)
edebs Posted September 7, 2023 Author Posted September 7, 2023 @tuanphan it's the other font that isnt working- "cinema script"
tuanphan Posted September 9, 2023 Posted September 9, 2023 On 9/7/2023 at 9:29 PM, edebs said: @tuanphan it's the other font that isnt working- "cinema script" currently you have a syntax error in CSS box. Can you send all current code? you can click here then paste the code 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!)
edebs Posted September 10, 2023 Author Posted September 10, 2023 @font-face { font-family: "DunbarTall"; src: url("https://use.typekit.net/wns4nid.css"); } @font-face { font-family: "cinema-script"; src: url("https://use.typekit.net/wns4nid.css"); } { font-family: "cinema-script", serif !important; font-weight: 400; font-style: normal; } Here is all the code that I have!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment