Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted January 13, 20214 yr Hello people, I'd like to enlarge the font size in the editor. How can I do that?
January 17, 20214 yr There are two ways to do this - the first is to highlight your text and use the 'Size' option in menu bar. The second is to increase the size of the normal font size, however, this will affect all text throughout your site that uses the normal font size - if that's what you want use the code below and add it to your custom CSS file. .ipsType_normal { font-size: 16px; } Change size in pixels to suit. Is this what you're after?
January 17, 20214 yr Author I tried both solutions you proposed, but they don’t work... I would like to enlarge the default font to type: Is this possible? 😕 I have visually impaired users 😄
January 17, 20214 yr As @Nathan Explosion suggests: .cke_wysiwyg_div { font-size: 50px; } Change the size to suit. This only affects the editor as text is being typed and not how it will appear posted.
January 17, 20214 yr Author It's very strange, I added the code to custom css but nothing is changed 😶 Ok, I added !important and now it works 😄 Thank you guys!