Chat4all IRC forum
*
*
Home
Help
Search
Calendar
Login
Register
Welcome, Guest. Please login or register.
Did you miss your activation email?
March 15, 2010, 08:41:40 AM

Login with username, password and session length
05/17/2008 - We've dropped e-mail support in favour of our Chat4All Helpdesk Tickets System.
Please use http://support.chat4all.net for all your support queries.
Search:     Advanced search
4610 Posts in 755 Topics by 220 Members Latest Member: - jazztease Most online today: 7 - most online ever: 154 (August 16, 2009, 11:23:19 AM)
Pages: [1]   Go Down
Print
Author Topic: Text impossible to read on chat link box  (Read 4234 times)
0 Members and 1 Guest are viewing this topic.
jdubbya
Newbie
*
Offline Offline

Posts: 2


View Profile
« on: February 09, 2008, 09:01:12 AM »

The link box to my chat on the bottom of this forum page:   www.zumaforums.net   is putting light grey text on a light grey background.   It is impossible to read.   How does this box determine the text colors to use for that box?    It is normal in my other forum template,   if I put the same code on a different page,  it puts red text,  Im assuming it goes off something on the page to determine the color to use,  but with it on a forum,  its not working correctly.   Anyway I can fix that?

Same code,  different page:   http://www.zumaforums.net/chat3.html


Also,  can I embed the Java flash box into a webpage,  intead of having the link and it open its own little box?
Logged
Foxman
The Incredible Chicken Hunter
IRCops
Full Member
*****
Offline Offline

Gender: Male
Posts: 101


The Incredible Chicken Hunter


View Profile WWW
« Reply #1 on: February 09, 2008, 05:39:41 PM »

Standard there is no color set for the "Nickname", "Window" etc. text in the Chat login box. So it uses the default color from you webpage/forum. But you can manualy add it(or you can even use your favorite Webpage edit program. (like frontpage)

Standard Chat Code:
Code:
<!-- Start chatcode -->

<form method="POST" action="http://www.chat4all.net/jirc26/chat-v1.cgi" target="myWindow" onsubmit="window.open('http://www.chat4all.net/blank.htm','myWindow','width=758,height=490,statusbar=no,location=no,toolbar=no,scrollbar=no,resize=yes,resizable=yes');" >
<table border="0" cellpadding="0" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="240" bgcolor="#D5E7F4">
<tr>
<td width="83"><font face="Arial">Nickname</font></td>
<td width="5">:</td>
<td width="150">
<input type="text" name="nickname" size="20"></td>
</tr>
<tr>
<td width="83">
<font size="2" face="Arial"><b>window</b></font></td>
<td width="5">:</td>
<td width="150">
<font face="Arial"><font size="2">small</font><input type="radio" value="1" name="size"><font size="2">normal</font><input type="radio" value="2" name="size" checked><font size="2">big</font><input type="radio" value="3" name="size"></font></td>
</tr>
<tr>
<td width="238" colspan="3">
<input type="submit" value="Enter the chat"></td>
</tr>
</table>
<input type=hidden name="pagetitle" value="Example"></p>
<input type=hidden name="tabletitle" value="Example"></p>
<input type=hidden name="roomname" value="Example"></p>
<input type=hidden name="tabletopcolour" value="#064383"></p>
<input type=hidden name="tablebodycolour" value="#6384B5"></p>
<input type=hidden name="language" value="eng"></p>
<input type=hidden name="rgb1" size="3" value="99">
<input type=hidden name="rgb2" size="3" value="132">
<input type=hidden name="rgb3" size="3" value="181"></p>
<input type=hidden name="smiley" value="3">
<input type=hidden name="textsize" value="12">
</form>

<!-- End of chatcode -->
Example:


Edited Chat Code:
Code:
<!-- Start chatcode -->

<form method="POST" action="http://www.chat4all.net/jirc26/chat-v1.cgi" target="myWindow" onsubmit="window.open('http://www.chat4all.net/blank.htm','myWindow','width=758,height=490,statusbar=no,location=no,toolbar=no,scrollbar=no,resize=yes,resizable=yes');" >
<table border="0" cellpadding="0" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="240" bgcolor="#808080">
<tr>
<td width="83"><font face="Arial" color="#FF0000">Nickname</font></td>
<td width="5"><font color="#FF0000">:</font></td>
<td width="150">
<font color="#FF0000">
<input type="text" name="nickname" size="20"></font></td>
</tr>
<tr>
<td width="83">
<font size="2" face="Arial" color="#FF0000"><b>window</b></font></td>
<td width="5"><font color="#FF0000">:</font></td>
<td width="150">
<font face="Arial"><font size="2" color="#FF0000">small</font><font color="#FF0000"><input type="radio" value="1" name="size"></font><font size="2" color="#FF0000">normal</font><font color="#FF0000"><input type="radio" value="2" name="size" checked></font><font size="2" color="#FF0000">big</font><font color="#FF0000"><input type="radio" value="3" name="size"></font></font></td>
</tr>
<tr>
<td width="238" colspan="3">
<font color="#FF0000">
<input type="submit" value="Enter the chat"></font></td>
</tr>
</table>
<input type=hidden name="pagetitle" value="Example"></p>
<input type=hidden name="tabletitle" value="Example"></p>
<input type=hidden name="roomname" value="Example"></p>
<input type=hidden name="tabletopcolour" value="#064383"></p>
<input type=hidden name="tablebodycolour" value="#6384B5"></p>
<input type=hidden name="language" value="eng"></p>
<input type=hidden name="rgb1" size="3" value="99">
<input type=hidden name="rgb2" size="3" value="132">
<input type=hidden name="rgb3" size="3" value="181"></p>
<input type=hidden name="smiley" value="3">
<input type=hidden name="textsize" value="12">
</form>

<!-- End of chatcode -->
Example:


Notice standard piece of code:
Code:
<td width="83"><font face="Arial">Nickname</font></td>
(no color set)

Edited piece of code:
Code:
<td width="83"><font face="Arial" color="#FF0000">Nickname</font></td>
« Last Edit: February 09, 2008, 06:38:06 PM by Foxman » Logged

pariah
Full Member
***
Offline Offline

Gender: Male
Posts: 146



View Profile WWW
« Reply #2 on: June 12, 2008, 09:48:32 PM »

I know this topic has not been used for awhile but for ppl who drop by to read it for answers
with a half decent web authoring package you can style the loggin box how you want without having to trawl
through the code i'm currently playing with microsoft visual web developer 2008 this is free software for winbloze machines
and so far its proved easy to use,I hope this helps those that are not code junkies
and no i'm not advertising for bill bloody gates but its a good program
Logged

Let those who crave power have it.
For the Meak will confiscate their weapons,
and they alone shall inherit the earth..
Howerver, first the meak need to grow man balls.
So it'll be awhile yet
Life's a bitch and then you Die, but I don't care coz I'm so High...
Pages: [1]   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.10 | SMF © 2006-2009, Simple Machines LLC
Oxygen design by Bloc
Valid XHTML 1.0! Valid CSS!
Page created in 0.056 seconds with 18 queries.