In order to accomplish what you want, you are going to have to move the banners and adjust thew correct lines of code/html/php.
all these are the lines you need to adjust
Code:
."<td bgcolor=\"#C0D0A1\" align=\"left\" valign=\"top\" width=\"60%\"><a href=\"index.php\"><img src=\"themes/XPOlive/images/logo.gif\" align=\"left\" alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n"
."<td width=\"40%\" align=\"right\" class=\"menuehead\">
\n";
if ($banners) {
include("banners.php");
}
echo "
</td>\n"
the header table is split into two columns.
One is 60%, which is where the logo is (on the left), and the other is 40%, which is where the banners display.
You will have to modify that code above to look like this
Code:
."<td bgcolor=\"#C0D0A1\" align=\"right\" valign=\"top\" width=\"100%\"><a href=\"index.php\"><img src=\"themes/XPOlive/images/logo.gif\" align=\"right\" alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n"
then you need to move the banner code(that was removed)
Code:
if ($banners) {
include("banners.php");
}
to be above this line
Code:
echo "<body bgcolor=\"#ECE9D8\" topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">\n\n";
I'm giving away all the trade secrets for free :roll: ...you noobs need to learn some basic HTML... :wink: