Hi
I have a site wide defined font but wish to use a different font for a specific text block
The following is what I've attempted.
Downloaded font ( Algerian Regular ) and get a .ttf file.
Obtain block id of specific text block id using google plugin ( https://chromewebstore.google.com/detail/squarespace-id-finder/igjamfnifnkmecjidfbdipieoaeghcff )
Go to Custom CSS
Load Font
Enter following in CSS
@font-face {
font-family: 'Algerian';
src: url(https://static1.squarespace.com/static/6314e82422945a1a6e7ecb2e/t/656b3708d0e90c712e0ed6d2/1701525256249/Algerian+Regular.ttf)
}
#block-yui_3_17_2_1_1701517608750_10889 * {font-family:Algerian}
Text font doesn't change
Anyone got an idea ?
Chris