INTERACT FORUM
Windows => Third Party Plug-ins, Programs, and Skins => Topic started by: joh on August 19, 2007, 03:17:44 am
-
Hi,
I have downloaded the plugin called NNTH Track Info,
but as it displays songs with special characters such
as á or ä ö å etc.. they are displayed as boxes. Im no
expert at CSS or any other kind of code for that
matter.. but I have tried to find information on fixing the
problem, like the @charset rule and the utf-8 and
unicode formats, but no luck. I will include the first
bit of code for the plugin.
Thanks for any help! //My
/*-----------------------------------------------------------------
-------
# NNTH File Info 1.0 for JRiver Media Center 12
#
-------------------------------------------------------------------
-----
# Copyright (C) 2007 Hieu Nguyen All Rights Reserved.
# License: Free Software
# Author: Hieu Nguyen
# Websites: http://nnth.info/
-------------------------------------------------------------------
------*/
html, body, form, fieldset, ul, li, img, p {
margin: 0;
padding: 0;
}
body {
scrollbar-3dlight-color: #50535B;
scrollbar-arrow-color: #A7AAB0;
scrollbar-base-color: #37393E;
scrollbar-darkshadow-color: #37393E;
scrollbar-face-color: #37393E;
scrollbar-highlight-color: #37393E;
scrollbar-shadow-color: #50535B;
color: #A7AAB0;
background: #37393E;
font-family: Arial, Tahoma, Helvetica, sans-serif;
font-size: 100%/1.5;
}
-
I've looked at that problem too.
Just replace the line :
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
with :
<meta http-equiv="Content-Type" content="text/html" />
Maybe there's a better charset to specify but this solution works great.