Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Pavel Chernitsky Posted September 21, 2020 Posted September 21, 2020 Hey, I was Trying to change the main-post-text font size because some members who mostly use mobile complained it was to small. I changed ALL the fonts in the theme "Font-Changer-Thing" thingy but none of them seem to respond to the changes. I looked at the code-f12 thing in chrome and saw that the fonts for that text was still the "ipsType_Normal" and not one of the new font... um, names? Is that actually the case and the font sizes for the mobile design are unchangeable or am I missing something?
andavis Posted October 5, 2020 Posted October 5, 2020 I am also trying to enlarge the font size in posts. Which one do I have to change?
Adlago Posted October 5, 2020 Posted October 5, 2020 On 9/21/2020 at 2:34 PM, Pavel Chernitsky said: Hey, I was Trying to change the main-post-text font size because some members who mostly use mobile complained it was to small. I changed ALL the fonts in the theme "Font-Changer-Thing" thingy but none of them seem to respond to the changes. I looked at the code-f12 thing in chrome and saw that the fonts for that text was still the "ipsType_Normal" and not one of the new font... um, names? Is that actually the case and the font sizes for the mobile design are unchangeable or am I missing something? Add in your Custom CSS @media screen and (max-width: 767px) .ipsType_normal, .ipsType_medium, body { font-size: 17px; } kmk and optrexnz 1 1
Adlago Posted October 7, 2020 Posted October 7, 2020 40 minutes ago, Pavel Chernitsky said: It does nothing for me... Share a link to your community please. Specify areas where your font needs to be changed. The code above does not affect the tablet. If you also ask for a tablet, change 767 to 979
Pavel Chernitsky Posted October 8, 2020 Author Posted October 8, 2020 (edited) Thanks for the help! Here is the link: https://carsforum.co.il/ Basically I'd like to change the fonts in the posts. all the other ones can be changed through the theme editor. I mean this text: Edited October 8, 2020 by Pavel Chernitsky
Adlago Posted October 8, 2020 Posted October 8, 2020 12 minutes ago, Pavel Chernitsky said: Thanks for the help! Here is the link: https://carsforum.co.il/ Basically I'd like to change the fonts in the posts. all the other ones can be changed through the theme editor. I mean this text: Did you put the code that I posted above? I do not currently see this code on your site. You now have 13 px for your body text. Put the code above in your Custom CSS
Pavel Chernitsky Posted October 8, 2020 Author Posted October 8, 2020 I posted it but after seeing it didn't work I removed it. I've added it again now.
Adlago Posted October 8, 2020 Posted October 8, 2020 16 minutes ago, Pavel Chernitsky said: I posted it but after seeing it didn't work I removed it. I've added it again now. In some template you have an inline style of 11 px. Check out your forum templates and edit it
Pavel Chernitsky Posted October 8, 2020 Author Posted October 8, 2020 (edited) How can I know (or efficiently search) which template it is? I've went through the ones I think are related and couldn't find anything. My first priority is to just remove the custom size so it's just controlled by the theme editing interface. Disclaimer: I know absolutely nothing about coding, html, css, and all those fancy computer words. Edited October 8, 2020 by Pavel Chernitsky
Solution Meddysong Posted October 8, 2020 Solution Posted October 8, 2020 On 10/5/2020 at 8:28 AM, Adlago said: Add in your Custom CSS @media screen and (max-width: 767px) .ipsType_normal, .ipsType_medium, body { font-size: 17px; } That's not quite correct; you're missing { }: @media screen and (max-width: 767px) { .ipsType_normal, .ipsType_medium, body { font-size: 17px; } }
Pavel Chernitsky Posted October 8, 2020 Author Posted October 8, 2020 @Meddysong That worked! Hopefully IPS will fix that soon and connect one of the fonts in the theme editor to this font. Thanks. Meddysong 1
Recommended Posts