Open your
themes/XPSilver/theme.php file in PHP editor.
find this part
Code:
if ($username == "") {
$username = "Anonymous";
}
echo "<body bgcolor=\"#F0F1F5\" topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">\n\n";
echo "<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" bgcolor=\"#B4B7CA\">\n"
."<tr>\n"
."<td bgcolor=\"#B4B7CA\" align=\"left\" valign=\"top\" width=\"65%\"><a href=\"index.php\"><img src=\"themes/XPSilver/images/logo.jpg\" align=\"left\" alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n"
."<td width=\"35%\" align=\"right\" class=\"menuehead\">
\n";
if ($banners) {
include("banners.php");
}
change it to this
Code:
if ($username == "") {
$username = "Anonymous";
}
if ($banners) {
include("banners.php");
}
echo "<body bgcolor=\"#F0F1F5\" topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">\n\n";
echo "<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" bgcolor=\"#B4B7CA\">\n"
."<tr>\n"
."<td bgcolor=\"#B4B7CA\" align=\"center\" valign=\"top\" width=\"100%\"><a href=\"index.php\"><img src=\"themes/XPSilver/images/logo.jpg\" align=\"left\" alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n";