Jump to content

Question

9 answers to this question

Recommended Posts

  • 0
Posted (edited)

You can't change font color without client edit, again.

It's L2, not a normal html.

Ofc you can lol

 

 

Whats worng on this code???

<html><head>
  <title>Community Board</title>
<body>
<center><table>
   <tr>
     <td><table bgcolor=3293F3>GM Shop</table></td>  
     <td><table bgcolor=3293F3>Gatekeeper</table></td>
   </tr>
</table></center>
</body></html>

 

 

 

Try 

 

 

<html>  <title>Community Board</title>
<body>
<center><table>
   <tr>
  <td><table width="120" bgcolor=3293F3><tr><td height=5></td></tr><tr><td>GM Shop</tr></td></table></td> 
  <td><table width="120" bgcolor=3293F3><tr><td height=5></td></tr><tr><td>Gatekeeper</tr></td></table></td>
   </tr>
</table></center>
</body></html>
I think thats what you are trying to do?

Inside the table you was missing the <tr><td> tags

Also ive added one more line using the height function to give height to the table (color)

Edited by NeverMore™
  • 0
Posted

Syntax not function where is mistake?

					<td bgcolor="151515"><font color=3293F3>GM Shop</font><button value="View" action="bypass -h _bbstop" width="180" height="20" back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
  • 0
Posted

he can change font color as he has it in his code, but his problem is (if im not wrong) that he wants those buttons differently colored.

 

you cant add bgcolor=XXXXXX to <td> it has to be whole table.

 

and you have to make table of tables

<table> <--this is main table where you put other tables
   <tr> <--table row
     <td><table bgcolor=XXXXXX>here goes your GM shop</table></td>  
     ^^^^each row is separated to <td></td> and in each you have to put one table with your bgcolor
     <td><table bgcolor=XXXXXX>here goes your Gatekeeper</table></td>
   </tr>
</table>

I hope it helps you a bit

  • 0
Posted (edited)

he can change font color as he has it in his code, but his problem is (if im not wrong) that he wants those buttons differently colored.

 

you cant add bgcolor=XXXXXX to <td> it has to be whole table.

 

and you have to make table of tables

<table> <--this is main table where you put other tables
   <tr> <--table row
     <td><table bgcolor=XXXXXX>here goes your GM shop</table></td>  
     ^^^^each row is separated to <td></td> and in each you have to put one table with your bgcolor
     <td><table bgcolor=XXXXXX>here goes your Gatekeeper</table></td>
   </tr>
</table>
I hope it helps you a bit

 

You can't change buttons font color without client edit, again.

It's L2, not a normal html.

Edited by ^Wyatt
  • 0
Posted

Whats worng on this code???

<html><head>
  <title>Community Board</title>
<body>
<center><table>
   <tr>
     <td><table bgcolor=3293F3>GM Shop</table></td>  
     <td><table bgcolor=3293F3>Gatekeeper</table></td>
   </tr>
</table></center>
</body></html>
  • 0
Posted (edited)

Ofc you can lol

lol i meant the font color of the buttons xD misunderstood Edited by ^Wyatt
Guest
This topic is now closed to further replies.


×
×
  • Create New...