NicEdit font size and font family not working

I am using nicEdit as my text editor on my website. and I include this:

All buttons work except the font size and font family, the selected text does not change to the font size and font family I choose. What's wrong?

+3


source to share


1 answer


Can I see your code (css and javascript)?

Check if your font family is compatible with your current operating system. There are a few cases where a font family works fine in Windows 8 but doesn't work in Windows 7



In your CSS, you can try this:

.text {
        font-family:'Lucida Handwriting', 'Segoe Script', 'Monotype Corsiva';
        /* Where if the first font family is not available, the browser will use the second one, and if the second one is not also available, it will finally use the last one */
    }

      

0


source







All Articles