EdouardPicard
-
Posts
5 -
Joined
-
Last visited
Reputation Activity
-
EdouardPicard got a reaction from tuanphan in The headers on the mobile version get smaller and it creates empty spaces between texts
Again fixed it, using !important on the code for the custom font, apparently happened because of a change today to squarespace
-
EdouardPicard reacted to melody495 in Custom font suddenly not working
It seems like your CSS code is being overridden by Squarespace's h1 font-family setting.
Add !important and it should work again, from this:
h1 { font-family: 'ROCA'; } to this
h1 { font-family: 'ROCA'!important; } Add this for all custom font CSS declaration.