saschulze Posted December 21, 2020 Share Posted December 21, 2020 Site URL: https://www.infinix.com/he/connect-with-us Hello: What code do I need to change the font on only one page within our site? We have several pages in Hebrew that work with certain fonts such as Arial better than what we have on our site. How can I change the font only on those pages without affecting the other pages? Thank you in advance! Link to comment
tuanphan Posted December 22, 2020 Share Posted December 22, 2020 You can add this code to Contact Us page Header <style> * { font-family: monospace; } </style> Replace monospace font 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
saschulze Posted December 23, 2020 Author Share Posted December 23, 2020 Hi - That worked for the general text however the Heading 1 and 2 text didn't change. How do I updated those areas as well? Link to comment
tuanphan Posted December 24, 2020 Share Posted December 24, 2020 16 hours ago, saschulze said: Hi - That worked for the general text however the Heading 1 and 2 text didn't change. How do I updated those areas as well? h1, h2 on Contact Page? Try again with this code <style> * { font-family: monospace !important; } </style> 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
sneather Posted May 20, 2021 Share Posted May 20, 2021 On 12/24/2020 at 1:36 AM, tuanphan said: h1, h2 on Contact Page? Try again with this code <style> * { font-family: monospace !important; } </style> How about one page AND mobile, only? Thanks. Link to comment
tuanphan Posted May 21, 2021 Share Posted May 21, 2021 22 hours ago, sneather said: How about one page AND mobile, only? Thanks. Add to that page header <style> @media screen and (max-width:767px) { * { font-family: monospace !important; }} </style> 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.