Venera Posted April 8, 2022 Posted April 8, 2022 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
tuanphan Posted April 10, 2022 Posted April 10, 2022 Hi, Try this p {font-family: 'Walsheim' !important;} This will apply for both sqsrte-small & sqsrte-large Venera 1 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!)
Venera Posted April 12, 2022 Author Posted April 12, 2022 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 Big Thanks!
Venera Posted May 3, 2022 Author Posted May 3, 2022 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.
tuanphan Posted May 5, 2022 Posted May 5, 2022 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. 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!)
Venera Posted May 6, 2022 Author Posted May 6, 2022 17 hours ago, tuanphan said: The site is private. Can you setup a password? I copied the site because the trial period ends therehttps://reed-glockenspiel-rhkr.squarespace.com/ Password - support 🙂
tuanphan Posted May 8, 2022 Posted May 8, 2022 On 5/6/2022 at 2:11 PM, Venera said: I copied the site because the trial period ends therehttps://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!)
Venera Posted May 8, 2022 Author Posted May 8, 2022 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?
tuanphan Posted May 9, 2022 Posted May 9, 2022 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; } Venera 1 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!)
Venera Posted May 17, 2022 Author Posted May 17, 2022 (edited) 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 herehttps://falcon-lavender-b2h4.squarespace.com/ pw - support Edited May 19, 2022 by Venera
tuanphan Posted May 20, 2022 Posted May 20, 2022 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 herehttps://falcon-lavender-b2h4.squarespace.com/ pw - support 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; } Venera 1 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!)
Venera Posted May 20, 2022 Author Posted May 20, 2022 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 😁
Venera Posted August 5, 2022 Author Posted August 5, 2022 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 🙂
tuanphan Posted August 5, 2022 Posted August 5, 2022 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 🙂 Use this a.nested-category-breadcrumb-link { font-family: 'Walsheim' !important; } Venera 1 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!)
Venera Posted August 5, 2022 Author Posted August 5, 2022 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 🙂
Venera Posted August 5, 2022 Author Posted August 5, 2022 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?
tuanphan Posted August 7, 2022 Posted August 7, 2022 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; } Venera 1 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!)
Venera Posted August 8, 2022 Author Posted August 8, 2022 On 8/7/2022 at 5:55 AM, tuanphan said: Use this code body.view-item .product-mark.sold-out { font-family: 'Walsheim' !important; } Big thanks! You help me a lot! 🙂
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment