NicEdit font size and font family not working
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 to share