nordin Skrevet 24. oktober 2003 Del Skrevet 24. oktober 2003 Hvis dere ser på www.newutd.com så har jeg en "boks" mellom logoen og selve siden hvor det står search og dato. Denne vil jeg fjerne, men jeg vet ikke hva jeg skal fjerne fra theme.php for at denne skal gå bort. Her er koden: <?php /************************************************************/ /* Ported Theme Name: Milo (v1.0) */ /* Original Theme Name: FungKu (v1.0) */ /* Copyright (c) 2001 Somara Sem (http://www.somara.com) */ /* Last Updated: 09/21/2001 by dezina.com */ /************************************************************/ /************************************************************/ /* Theme Colors Definition */ /* */ /* Define colors for your web site. $bgcolor2 is generaly */ /* used for the tables border as you can see on OpenTable() */ /* function, $bgcolor1 is for the table background and the */ /* other two bgcolor variables follows the same criteria. */ /* $texcolor1 and 2 are for tables internal texts */ /************************************************************/ $bgcolor1 = "#FFFFFF"; $bgcolor2 = "#808080"; $bgcolor3 = "#EFEFEF"; $bgcolor4 = "#808080"; $textcolor1 = "#000000"; $textcolor2 = "#000000"; /************************************************************/ /* OpenTable Functions */ /* */ /* Define the tables look&feel for you whole site. For this */ /* we have two options: OpenTable and OpenTable2 functions. */ /* Then we have CloseTable and CloseTable2 function to */ /* properly close our tables. The difference is that */ /* OpenTable has a 100% width and OpenTable2 has a width */ /* according with the table content */ /************************************************************/ function OpenTable() { global $bgcolor1, $bgcolor2; echo "<table width="100%" border="0" cellspacing="1" cellpadding="0" bgcolor="$bgcolor2"><tr><td>n"; echo "<table width="100%" border="0" cellspacing="1" cellpadding="8" bgcolor="$bgcolor1"><tr><td>n"; } function CloseTable() { echo "</td></tr></table></td></tr></table>n"; } function OpenTable2() { global $bgcolor1, $bgcolor2; echo "<table border="0" cellspacing="1" cellpadding="0" bgcolor="$bgcolor2" align="center"><tr><td>n"; echo "<table border="0" cellspacing="1" cellpadding="8" bgcolor="$bgcolor1"><tr><td>n"; } function CloseTable2() { echo "</td></tr></table></td></tr></table>n"; } /************************************************************/ /* FormatStory */ /* */ /* Here we'll format the look of the stories in our site. */ /* If you dig a little on the function you will notice that */ /* we set different stuff for anonymous, admin and users */ /* when displaying the story. */ /************************************************************/ function FormatStory($thetext, $notes, $aid, $informant) { global $anonymous; if ($notes != "") { $notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>n"; } else { $notes = ""; } if ("$aid" == "$informant") { echo "<font class="content" color="#505050">$thetext$notes</font>n"; } else { if($informant != "") { $boxstuff = "<a href="modules.php?name=Your_Account&op=userinfo&username=$informant">$informant</a> "; } else { $boxstuff = "$anonymous "; } $boxstuff .= ""._WRITES." <i>"$thetext"</i>$notesn"; echo "<font class="content" color="#505050">$boxstuff</font>n"; } } /************************************************************/ /* 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: blocks(left); */ /************************************************************/ function themeheader() { global $user, $banners, $sitename, $slogan, $cookie, $prefix; cookiedecode($user); $username = $cookie[1]; if ($username == "") { $username = "Anonymous"; } echo "<body bgcolor="#ffffff" text="#000000" link="#363636" vlink="#363636" alink="#d5ae83">n" ."<br>n"; if ($banners) { include("banners.php"); } echo "<br>n" ."<table cellpadding="0" cellspacing="0" width="750" border="0" align="center" bgcolor="#ffffff">n" ."<tr>n" ."<td bgcolor="#ffffff" width="306">n" ."<a href="index.php"><img src="themes/Milo/images/logo.gif" align="left" alt=""._WELCOMETO." $sitename" border="0"></a></td>n" ."</tr>n" ."</table><br>n" ."<table cellpadding="0" cellspacing="0" width="750" border="0" align="center" bgcolor="#ffffff">n" ."<tr>n" ."<td bgcolor="#808080">n" ."<img src="themes/Milo/images/tophighlight.gif"></td>n" ."</tr>n" ."</table>n" ."<table cellpadding="0" cellspacing="0" width="750" border="0" align="center" bgcolor="#ffffff">n" ."<tr valign="middle">n" ."<td width="400" bgcolor="#C0C0C0" align="left">n" ." </td>n" ."<td bgcolor="#C0C0C0" align="center">n" ."<form action="modules.php?name=Search" method="post"><font class="content" color="#000000"><b>"._SEARCH." </b>n" ."<input type="text" name="query" size="14"></font></form></td>n" ."<td bgcolor="#C0C0C0" align="center">n" ."<form action="modules.php?name=Search" method="get"><font class="content"><b>"._TOPICS." </b>n"; $toplist = mysql_query("select topicid, topictext from $prefix"._topics." order by topictext"); echo "<select name="topic"onChange='submit()'>n" ."<option value="">"._ALLTOPICS."</option>n"; while(list($topicid, $topics) = mysql_fetch_row($toplist)) { if ($topicid==$topic) { $sel = "selected "; } echo "<option $sel value="$topicid">$topics</option>n"; $sel = ""; } echo "</select></font></form></td>n" ."</tr></table>n" ."<table cellpadding="0" cellspacing="0" width="750" border="0" align="center" bgcolor="#0066FF">n" ."<tr>n" ."<td bgcolor="#000000" colspan="4"><IMG src="themes/Milo/images/pixel.gif" width="1" height=1 alt="" border="0" hspace="0"></td>n" ."</tr>n" ."<tr valign="middle" bgcolor="#808080">n" ."<td width="15%" nowrap><font class="content" color="#363636">n"; if ($username == "Anonymous") { echo " <font color="#363636"><a href="modules.php?name=Your_Account"></a></font>n"; } else { echo " "._HELLO." $username! [ <a href="modules.php?name=Your_Account&op=logout">Logout</a> ]"; } echo "</font></td>n" ."<td align="center" height="20" width="60%"><font class="content">n" ." n" ."</td>n" ."<td align="right" width="25%"><font class="content">n" ."<script type="text/javascript">nn" ."<!-- // Array ofmonth Namesn" ."var monthNames = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");n" ."var now = new Date();n" ."thisYear = now.getYear();n" ."if(thisYear < 1900) {thisYear += 1900}; // corrections if Y2K display problemn" ."document.write(monthNames[now.getMonth()] + " " + now.getDate() + ", " + thisYear);n" ."// -->nn" ."</script></font></td>n" ."<td> </td>n" ."</tr>n" ."<tr>n" ."<td bgcolor="#000000" colspan="4"><IMG src="themes/Milo/images/pixel.gif" width="1" height="1" alt="" border="0" hspace="0"></td>n" ."</tr>n" ."</table>n" ."<!-- FIN DEL TITULO -->n" ."<table width="750" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff" align="center">n" ."<tr valign="top">n" ."<td bgcolor="#C0C0C0"><img src="themes/Milo/images/pixel.gif" width="1" height="3" border="0" alt=""></td>n" ."</tr>n" ."<tr valign="top">n" ."<td bgcolor="#ffffff"><img src="themes/Milo/images/pixel.gif" width="1" height="5" border="0" alt=""></td>n" ."</tr>n" ."</table>n" ; $public_msg = public_message(); echo "$public_msg<br>"; echo "<table width="750" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff" align="center"><tr valign="top">n" ."<td bgcolor="#eeeeee" width="150" valign="top">n"; blocks(left); echo "</td><td><img src="themes/Milo/images/pixel.gif" width="15" height="1" border="0" alt=""></td><td width="100%">n"; } /************************************************************/ /* Function themefooter() */ /* */ /* Control the footer for your site. You don't need to */ /* close BODY and HTML tags at the end. In some part call */ /* the function for right blocks with: blocks(right); */ /* Also, $index variable need to be global and is used to */ /* determine if the page your're viewing is the Homepage or */ /* and internal one. */ /************************************************************/ function themefooter() { global $index; if ($index == 1) { echo "</td><td><img src="themes/Milo/images/pixel.gif" width="15" height="1" border="0" alt=""></td><td valign="top" width="150" bgcolor="#eeeeee">n"; blocks(right); } echo "</td>n" ."</tr></table>n" ."<table bgcolor="#000000" width="750" cellpadding="0" cellspacing="0" border="0" align="center">n" ."<tr>n" ."<td width="750" height="5"><img src="themes/Milo/images/bottombar.gif" width="750" height="5" border="0" alt=""></td>n" ."</tr>n" ."<tr>n" ."<td width="100%"><img src="themes/Milo/images/pixel.gif" width="1" height="1" border="0" alt=""></td>n" ."</tr>n" ."</table>n" ."<br>n" ."<br>n" ."<table width="750" cellpadding="0" cellspacing="0" border="0" align="center">n" ."<tr align="center">n" ."<td width="100%" colspan="3">n"; footmsg(); echo "</td>n" ."</tr>n" ."</table>n"; } /************************************************************/ /* Function themeindex() */ /* */ /* This function format the stories on the Homepage */ /************************************************************/ function themeindex ($aid, $informant, $time, $title, $counter, $topic, $thetext, $notes, $morelink, $topicname, $topicimage, $topictext) { global $anonymous, $tipath; $ThemeSel = get_theme(); if (file_exists("themes/$ThemeSel/images/topics/$topicimage")) { $t_image = "themes/$ThemeSel/images/topics/$topicimage"; } else { $t_image = "$tipath$topicimage"; } echo "<table border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff" width="420"><tr><td>n" ."<table border="0" cellpadding="1" cellspacing="0" bgcolor="#000000" width="100%"><tr><td>n" ."<table border="0" cellpadding="3" cellspacing="0" bgcolor="#C0C0C0" width="100%"><tr><td align="left">n" ."<font class="option" color="#363636"><b>$title</b></font>n" ."</td></tr></table></td></tr></table>n" ."<font color="#999999"><b><a href="modules.php?name=News&new_topic=$topic"><img src="$t_image" border="0" Alt="$topictext" align="right" hspace="10" vspace="10"></a></B></font>n"; FormatStory($thetext, $notes, $aid, $informant); echo "</td></tr></table><br>n" ."<table border="0" cellpadding="1" cellspacing="0" bgcolor="#eeeeee" width="100%"><tr><td>n" ."<table border="0" cellpadding="3" cellspacing="0" bgcolor="#ffffff" width="100%"><tr><td align="center">n" ."<font color="#999999" size="1">"._POSTEDBY." "; formatAidHeader($aid); echo " "._ON." $time $timezone ($counter "._READS.")<br></font>n" ."<font class="content">$morelink</font>n" ."</td></tr></table></td></tr></table>n" ."<br>nnn"; } /************************************************************/ /* Function themeindex() */ /* */ /* This function format the stories on the story page, when */ /* you click on that "Read More..." link in the home */ /************************************************************/ function themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) { global $admin, $sid, $tipath; $ThemeSel = get_theme(); if (file_exists("themes/$ThemeSel/images/topics/$topicimage")) { $t_image = "themes/$ThemeSel/images/topics/$topicimage"; } else { $t_image = "$tipath$topicimage"; } echo "<table border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff" width="100%"><tr><td>n" ."<table border="0" cellpadding="1" cellspacing="0" bgcolor="#000000" width="100%"><tr><td>n" ."<table border="0" cellpadding="3" cellspacing="0" bgcolor="#808080" width="100%"><tr><td align="left">n" ."<font class="option" color="#363636"><b>$title</b></font><br>n" ."<font class="content">"._POSTEDON." $datetime "._BY." "; formatAidHeader($aid); echo "</td></tr></table></td></tr></table><br>"; echo "<a href="modules.php?name=News&new_topic=$topic"><img src="$t_image" border="0" Alt="$topictext" align="right" hspace="10" vspace="10"></a>n"; FormatStory($thetext, $notes="", $aid, $informant); echo "</td></tr></table><br>nnn"; } /************************************************************/ /* Function themesidebox() */ /* */ /* Control look of your blocks. Just simple. */ /************************************************************/ function themesidebox($title, $content) { echo "<table border="0" cellpadding="1" cellspacing="0" bgcolor="#000000" width="150"><tr><td>n" ."<table border="0" cellpadding="3" cellspacing="0" bgcolor="#C0C0C0" width="100%"><tr><td align=left>n" ."<font class="content" color="#363636"><b>$title</b></font>n" ."</td></tr></table></td></tr></table>n" ."<table border="0" cellpadding="3" cellspacing="0" width="150">n" ."<tr valign="top"><td>n" ."$contentn" ."</td></tr></table>n" ."<br>nnn"; } ?> Lenke til kommentar
Anbefalte innlegg
Opprett en konto eller logg inn for å kommentere
Du må være et medlem for å kunne skrive en kommentar
Opprett konto
Det er enkelt å melde seg inn for å starte en ny konto!
Start en kontoLogg inn
Har du allerede en konto? Logg inn her.
Logg inn nå