Jump to content

Custom font doesn't work

Recommended Posts

Hi guys,

This code for the paragraph (large/small) doesn't work for me,

p.sqsrte-large {font-family: 'Walsheim';}
p.sqsrte-small {font-family: 'Walsheim';}

although the usual "p" works.

p {font-family: 'Walsheim';}

Perhaps there is some kind of replacement?

Thanks x

Link to comment
  • 3 weeks later...
On 4/11/2022 at 2:11 AM, tuanphan said:

Hi,

Try this

p {font-family: 'Walsheim' !important;}

This will apply for both sqsrte-small & sqsrte-large

Hello again! I ran into a problem that the font is not used everywhere.
I will attach screenshots where is the other font.

https://calliope-tulip-rjr7.squarespace.com/


Store page (navigation and product price)
Product page (navigation, product price, add to cart button, price "maybe you like it")
Shopping cart (product name, quantity and checkout button).


Surprisingly, on the shopping cart page, the price of the product is written in the font that I need.

Help me change the font in these details please.

shop menu.png

shop price.png

product menu.png

cart buttom.png

also ike.png

cart.png

Link to comment
On 5/3/2022 at 11:18 PM, Venera said:

Hello again! I ran into a problem that the font is not used everywhere.
I will attach screenshots where is the other font.

https://calliope-tulip-rjr7.squarespace.com/


Store page (navigation and product price)
Product page (navigation, product price, add to cart button, price "maybe you like it")
Shopping cart (product name, quantity and checkout button).


Surprisingly, on the shopping cart page, the price of the product is written in the font that I need.

Help me change the font in these details please.

shop menu.png

shop price.png

product menu.png

cart buttom.png

also ike.png

cart.png

The site is private. Can you setup a password?

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
On 5/6/2022 at 2:11 PM, Venera said:

I copied the site because the trial period ends there

https://reed-glockenspiel-rhkr.squarespace.com/
Password - support

🙂

Add to Design > Custom CSS

* {
    font-family: utopia-std-headline !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
4 hours ago, tuanphan said:

Add to Design > Custom CSS

* {
    font-family: utopia-std-headline !important;
}

 

Yes, it works well and changes everything to the utopia font, but I need the walsheim font and in this case all the headings and some buttons acquire the walsheim font. Is it possible to somehow change only these areas that I sent in the screenshots? 
-Store page (navigation and product price)
-Product page (navigation, product price, add to cart button, price "you might also like")
-Shopping cart (product name, quantity and checkout button).


In these places, I need the walsheim font, and utopia should remain in the headings.
Is it possible to do this?

ut.png

wal.png

Link to comment

Use this CSS

div#block-yui_3_17_2_1_1651833850081_3741 p strong {
    font-family: utopia-std-headline !important;
}
li.nested-category-breadcrumb-list-item a {
    font-family: utopia-std-headline !important;
}
.product-price {
    font-family: utopia-std-headline !important;
}
.sqs-add-to-cart-button-inner {
    font-family: utopia-std-headline !important;
}
.cart-row-title, .cart-row-price {
    font-family: utopia-std-headline !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
  • 2 weeks later...
On 5/9/2022 at 11:19 AM, tuanphan said:

Use this CSS

div#block-yui_3_17_2_1_1651833850081_3741 p strong {
    font-family: utopia-std-headline !important;
}
li.nested-category-breadcrumb-list-item a {
    font-family: utopia-std-headline !important;
}
.product-price {
    font-family: utopia-std-headline !important;
}
.sqs-add-to-cart-button-inner {
    font-family: utopia-std-headline !important;
}
.cart-row-title, .cart-row-price {
    font-family: utopia-std-headline !important;
}

 

Thank you very much! It worked, but not in all places. please help me change the font in these places (I hope I'm not bothering you too much 🙂).
- navigation on the product page (the font is very similar, but it's not walsheim)
- in the cart the product name, quantity and checkout button

I noticed that when I refresh the page, my font "jumps" and changes from the old to the new one. As a result, when the page loads, the font changes, but can these jumps be avoided somehow? How do I make sure that the correct font is loaded initially?

p.s.: my website is now here
https://falcon-lavender-b2h4.squarespace.com/
pw - support

22.png

 

 

222.png

Edited by Venera
Link to comment
On 5/17/2022 at 3:30 PM, Venera said:

Thank you very much! It worked, but not in all places. please help me change the font in these places (I hope I'm not bothering you too much 🙂).
- navigation on the product page (the font is very similar, but it's not walsheim)
- in the cart the product name, quantity and checkout button

I noticed that when I refresh the page, my font "jumps" and changes from the old to the new one. As a result, when the page loads, the font changes, but can these jumps be avoided somehow? How do I make sure that the correct font is loaded initially?

p.s.: my website is now here
https://falcon-lavender-b2h4.squarespace.com/
pw - support

22.png

 

 

222.png

Use this CSS

a.ProductItem-nav-breadcrumb-link {
    font-family: 'utopia-std-headline';
}
.cart-checkout-button {
    font-family: 'utopia-std-headline' !important;
}
input.cart-row-qty-input {
    font-family: 'utopia-std-headline' !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
21 minutes ago, tuanphan said:

Use this CSS

a.ProductItem-nav-breadcrumb-link {
    font-family: 'utopia-std-headline';
}
.cart-checkout-button {
    font-family: 'utopia-std-headline' !important;
}
input.cart-row-qty-input {
    font-family: 'utopia-std-headline' !important;
}

 

Thank you very much! Thanks to you, my website is now perfect 😁

Link to comment
  • 2 months later...
2 hours ago, Venera said:

hi! I just found pieces of text that css was not applied to ("sold out" on the product page and "breadcrumbs") how can I change the font here to walsheim?

https://heptagon-brass-6xej.squarespace.com/
pw - hello

Help me please 🙂

 

7.png

8.png

9.png

Use this

a.nested-category-breadcrumb-link {
    font-family: 'Walsheim' !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
2 hours ago, tuanphan said:

Use this

a.nested-category-breadcrumb-link {
    font-family: 'Walsheim' !important;
}

 

Thank you very much! This only works in the desktop version, help me plase with the code also for the mobile version 🙂

Link to comment
5 minutes ago, Venera said:

Thank you very much! This only works in the desktop version, help me plase with the code also for the mobile version 🙂

Sorry I made a mistake, it works everywhere! Thank you very much! (although I will be happy if you help me remove the capital letters).

Do you have a code to change the font of the "sold out" on the product page?

Link to comment
On 8/5/2022 at 6:40 PM, Venera said:

Sorry I made a mistake, it works everywhere! Thank you very much! (although I will be happy if you help me remove the capital letters).

Do you have a code to change the font of the "sold out" on the product page?

Use this code

body.view-item .product-mark.sold-out {
    font-family: 'Walsheim' !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

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.