Got it!!!! Thank God
It was this line of code in the forums/global file:
Quote:
// Will look in the user info for a style
if ($bbuserinfo['styleid']!=0) { //style specified
$styleid=$bbuserinfo['styleid'];
} else { //no style
$styleid=15;
}
if ($style=$DB_site->query_first("SELECT templatesetid,replacementsetid,userselect FROM style WHERE styleid='$styleid'")) {
if (!$style['userselect']) {
unset($style);
$styleid=15;
}
} else {
unset($style);
$styleid=15;
}
|
Just changed $styleid=1, to $styleid=15 (my desired style set).
Shawn