RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Gump Studio HTML Font Color Problems

Killroth

Sorceror
I can't seem to get the font to change when I put in
AddHtml(185, 23, 184, 24, @"<u><FONT COLOR=white>GUILD CREATION</u></font>", (bool)false, (bool)false);

Are you actually able to change the color of the front using HTML?
Or do I have to go around it to do that? And if so, how do I go around it to add white text?
 

Killroth

Sorceror
Nevermind, played around and found the answer.
If anyone has the same problem.

The answer to the question is:

AddHtml(185, 23, 184, 24, @"<u><basefont COLOR=#FFFFFF>GUILD CREATION</u></font>", (bool)false, (bool)false);
 
Top