For the life of me, I can not figure out what to take out to get the navigation links out of my header. Everything I try either doesn't take anything out or it makes the front page blank. I want the header to only contain my banner (centered). To see my header www.sek-sports.com
Can someone please show me what I need to remove from my themeheader code
************************************************************/
/* Function themeheader() */
/* */
/* Control the header for your site. You need to define the */
/* BODY tag and in some part of the code call the blocks */
/* function for left side with: block(left); */
/************************************************************/
function themeheader() {
global $user, $sitename;
cookiedecode($user);
$username = $cookie[1];
if (empty($username)) {
$username = "Anonymous";
}
echo "<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">\n"
."<br>\n";
ads(0);
OpenTable();
echo "<table border=\"0\"><tr><td rowspan=\"2\">"
."<a href=\"index.php\"><img src=\"themes/Kaput/images/logo.gif\" border=\"0\" alt=\""._WELCOMETO." $sitename\" align=\"left\"></a></td>"
."<td align=\"right\" valign=\"top\" width=\"100%\">"
."<A href=\"/\">Home</a> · <A href=\"modules.php?name=Topics\">Topics</a> · "
."<A href=\"modules.php?name=Downloads\">Downloads</a> · <A href=\"modules.php?name=Your_Account\">Your Account</a>"
." · <A href=\"modules.php?name=Forum\">Forums</a> · <A href=\"modules.php?name=Top\">Top 10</a>"
."</b></font></td></tr></table>\n";