I only had one problem, and that was that everyone in a post had the same font and glow, how this was deteremined i don't know, but i fixed by leaving ubb_lib_posting.cgi alone, going into public_page_topic.pl and putting in:
###
###Below:
###
$alt_color = "$vars_style{AltColumnColor1}";
}
###
###I put in:
###
my $this_color = $user_profile[16];
chomp ($this_color);
if ($this_color ne "") {
$this_color = qq($this_color);
} else {
$this_color = qq(white);
}
my $this_glow = $user_profile[17];
chomp ($this_glow);
if ($this_glow ne "") {
$this_glow = qq(style="filter:glow(color=$this_glow, strength=3,400)");
} else {
$this_glow = qq(black);
}
###
###And then replaced:
###
$show_public_name
###
###with:
###
###
###
###
That way, it won't show up for someone who has this disabled.