I'm having a small problem with phpmychat Plus (1.9). I use a 21 inch monitor and when using Firefox, the bottom of the chat window (the part where the "Quick Menu" is displayed) is partially hidden. Is there any code that I can change to alleviate this problem? I reviewed the following patch description but can't determine where this code is supposed to be applied (I believe it's for a different software version):
"The 0.15 stylesheets have not been working with mozilla
releases. The mozilla people say that this might be due
to the fact that mozilla ignores every stylesheet that
comes with "text/html" content type information which is
sent within the http header. I have changed the css.php3
files and inserted the following lines after the initial
comment:
/*
* Sends the appropriate header information (required to
work with mozilla) /
header("Content-type: text/css");
and see, it is working fine now!"
Any help would be appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The sizes of the frames are set in the plus/liv/frameset_def.lib.php file, on lines 97, 103, 109 and 118 (for old browsers).
If you use the latest Firefox, then the lines are 39, 45, 54 and 60 (same as for IE - so they will affect the IE dispay as well). Give them some tries...
Try to increase the last value:
<FRAMESET ROWS="38,,60" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
should become
<FRAMESET ROWS="38,,70" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
and
<FRAMESET ROWS="38,,35" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
should become
<FRAMESET ROWS="38,,45" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
Do that simetrically (if you increase with 10pts one of the values, do the same to the other 3 lines, accordingly)
Contact me on YM (ciprianmp) if I wasn't too clear...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm having a small problem with phpmychat Plus (1.9). I use a 21 inch monitor and when using Firefox, the bottom of the chat window (the part where the "Quick Menu" is displayed) is partially hidden. Is there any code that I can change to alleviate this problem? I reviewed the following patch description but can't determine where this code is supposed to be applied (I believe it's for a different software version):
"The 0.15 stylesheets have not been working with mozilla
releases. The mozilla people say that this might be due
to the fact that mozilla ignores every stylesheet that
comes with "text/html" content type information which is
sent within the http header. I have changed the css.php3
files and inserted the following lines after the initial
comment:
/*
* Sends the appropriate header information (required to
work with mozilla)
/
header("Content-type: text/css");
and see, it is working fine now!"
Any help would be appreciated.
The sizes of the frames are set in the plus/liv/frameset_def.lib.php file, on lines 97, 103, 109 and 118 (for old browsers).
If you use the latest Firefox, then the lines are 39, 45, 54 and 60 (same as for IE - so they will affect the IE dispay as well). Give them some tries...
Try to increase the last value:
<FRAMESET ROWS="38,,60" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
should become
<FRAMESET ROWS="38,,70" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
and
<FRAMESET ROWS="38,,35" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
should become
<FRAMESET ROWS="38,,45" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
Do that simetrically (if you increase with 10pts one of the values, do the same to the other 3 lines, accordingly)
Contact me on YM (ciprianmp) if I wasn't too clear...