Guest Posted July 16, 2019 Share Posted July 16, 2019 I'm very new to this. I'm using Brine and am trying to add a custom font for h1. The font name is appearing in the list of available fonts but the h1 text is not changing. I manually changed the h1 font in Style but it changed nothing. Any thoughts on where I made a mistake? The following is the code I entered: font-family: 'gooddog'; src: url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df62bcf8a3400014e88f9/1563293227668/gooddp__-webfont.woff) url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df688c27c1c00012438c8/1563293320236/gooddp__-webfont.woff2) url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df6ad0a52970001c7cd98/1563293357257/GOODDP__.TTF) } h1{ font-family: 'gooddog', 'gibson',sans-serif; } Link to comment
tuanphan Posted July 17, 2019 Share Posted July 17, 2019 Can you post all code you inserted? or post screenshot? 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
Guest Posted July 17, 2019 Share Posted July 17, 2019 I did post it in my original post. Is it not visible? Link to comment
Guest Posted July 17, 2019 Share Posted July 17, 2019 I did post it in my original post. Is it not visible? Link to comment
tuanphan Posted July 17, 2019 Share Posted July 17, 2019 @fbogus @font-face { font-family: 'gooddog'; src: url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df62bcf8a3400014e88f9/1563293227668/gooddp__-webfont.woff); src: url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df688c27c1c00012438c8/1563293320236/gooddp__-webfont.woff2), url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df6ad0a52970001c7cd98/1563293357257/GOODDP__.TTF); } h1{ font-family: 'gooddog', 'gibson',sans-serif !important; } 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
Guest Posted July 17, 2019 Share Posted July 17, 2019 @tuanphan The only change I saw is adding the code !important I made that change and it had no effect that I could see. Link to comment
Guest Posted July 17, 2019 Share Posted July 17, 2019 @tuanphan The only change I saw is adding the code !important I made that change and it had no effect that I could see. Link to comment
tuanphan Posted July 17, 2019 Share Posted July 17, 2019 Did you add @font-face? 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
Guest Posted July 17, 2019 Share Posted July 17, 2019 Yes, it is there. Still no change. Link to comment
Guest Posted July 17, 2019 Share Posted July 17, 2019 Yes, it is there. Still no change. Link to comment
paul2009 Posted July 17, 2019 Share Posted July 17, 2019 Please provide a working link to the website. It's almost impossible to troubleshoot code unless the community have a working link to your website. Without this we cannot see the code being used or any errors that are being generated. If your site is still in trial mode you will need to set a site password and tell us what it is. Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional. Would you like your customers to be able to mark their favourite products in your Squarespace store? Link to comment
tuanphan Posted July 17, 2019 Share Posted July 17, 2019 Can you share site url? 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
Guest Posted July 17, 2019 Share Posted July 17, 2019 I am still in trial mode. I will try to figure out how to set a password. Link to comment
Guest Posted July 17, 2019 Share Posted July 17, 2019 I am still in trial mode. I will try to figure out how to set a password. Link to comment
Guest Posted July 17, 2019 Share Posted July 17, 2019 My url iscinnamon-helicon-dl4f.squarespace.com The password isSpentGrainTreats Link to comment
Guest Posted July 17, 2019 Share Posted July 17, 2019 My url iscinnamon-helicon-dl4f.squarespace.com The password isSpentGrainTreats Link to comment
tuanphan Posted July 17, 2019 Share Posted July 17, 2019 @fbogus There should be commas between urls Your code is @font-face { font-family: 'gooddog'; src: url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df62bcf8a3400014e88f9/1563293227668/gooddp__-webfont.woff) url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df688c27c1c00012438c8/1563293320236/gooddp__-webfont.woff2) url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df6ad0a52970001c7cd98/1563293357257/GOODDP__.TTF) } It should be @font-face { font-family: 'gooddog'; src: url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df62bcf8a3400014e88f9/1563293227668/gooddp__-webfont.woff), url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df688c27c1c00012438c8/1563293320236/gooddp__-webfont.woff2), url(https://static1.squarespace.com/static/5d279557b233000001390e62/t/5d2df6ad0a52970001c7cd98/1563293357257/GOODDP__.TTF); } 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
Guest Posted July 17, 2019 Share Posted July 17, 2019 Thank you! That made all the difference.I am not detail-oriented enough to be doing this regularly. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.