Logging help

Posted by Rlq on Wed 10 Dec 2014 12:06 PM — 7 posts, 24,218 views.

#0
Hey, I have been having a bit of glitch that I cant seem to work around. My logs are shown as blank, but they are not actually blank, the BG color is black and so is the test colors... I am logging as HTML... when I open the log file, it opens in my browser but only the wolrd info is displayed, the rest is all black. Guess it has to do something with the font color or something like it.. but I am not too tech savvy to locate the problem... If I highlight, then the text is all shown... so???
#1
Here is what I have in my preamble:
Quote:

<html>
<head>
<title>Log of %N session</title>
<style type="text/css">
body {background-color: black;}
</style>
</head>
<body>
<pre><code>
<font size=2 face="FixedSys, Lucida Console, Courier New, Courier">



And this is what is in my postamble:

Quote:

</font></code></pre>
</body>
</html>
USA #2
Off the top of my head, isn't the default text color black? So black text on a black background .....
#3
That is indeed the issue I think it is... BUT, where do I change the default color? The output on my client for the MUD is grey text on black background, but in the log it comes out to be black on black background.
USA #4
You could change the text color in your header where the font is defined or you can remove/change the setting for the black background in the same place.
#5
Pardon my lack of knowledge...
But you mean should I change the preamble to something like this from its earlier state?

Quote:

<html>
<head>
<title>Log of %N session</title>
<style type="text/css">
body {background-color: black;}
</style>
</head>
<body>
<pre><code>
<font size=2 face="FixedSys, Lucida Console, Courier New, Courier" color=grey>
USA #6
My thought was more change {background-color: black;} to some color that's easier to read black text against but yes, something like color=grey would work where you did that too.