01-03-2007 01:37 AM
01-08-2007 03:23 AM
Hello balthamos,
I tried to reproduce the problem you described and found out that *.css stylesheets applied to the HTML function panel help and finally got this working:
Used the following HTML ...
<html>
<head>
<link rel="stylesheet" type="text/css" href="../test.css"/>
</head>
<body>
<b>test</b> Hello
</body>
</html>
and the following CSS ...
BODY {
background-color: #000000;
font-family: Arial, Helvetica, Verdana, sans-serif;
color: #FFFFFF;
font-size:12px;
}
Specification of the path seems to be a bit weird, as not all path specificatons are valid, although working in IE.
Hope this helps,
Regards,
C.L. - National Instruments Germany
01-08-2007 03:25 AM
03-22-2007 03:31 AM