Hi,
ich habe ein Problem:
Ich habe ein Layout auf Tabellenbasis gemacht, jetzt habe ich das Problem, das zwischen zwei Tabellen eine Stück frei bleibt!
Ich habe in jeder Tabelle ein Hintergrundbild welches zusammen ein ganzes Bild gibt, allerdings habe ich jetzt einen Übergang drinne den ich nicht haben will...
Hier mein Code:
<table width="911" height="2011" cellspacing="0" celpadding="0" align="center">
<tr>
<td>
<table width="900" height="2011" cellspacing="0" celpadding="0">
<!--header-->
<tr height="200" width="900">
<td colspan="3" style="background-image:url(header.jpg)">
</td>
</tr>
<!--header-->
<!--last news, wars, topics-->
<tr height="120">
<td width="295" style="background-image:url(lastnews.jpg)">
<? include("sc_headlines.php"); ?>
</td>
<td width="310" style="background-image:url(lastwars.jpg)">
<? include("sc_results.php"); ?>
</td>
<td width="295" style="background-image:url(lasttopics.jpg)">
<? include("latesttopics.php"); ?>
</td>
</tr>
<!--last news, wars, topics-->
<!--spacer-->
<tr height="20" width="900">
<td colspan="3" style="background-image:url(spacer.jpg)">
</td>
</tr>
<!--spacer-->
<!--menu_left, content, menu_right-->
<tr valign="top">
<td colspan="3">
<table cellspacing="0" celpadding="0">
<tr valign="top">
<td width="180" rowspan="2" style="background-image:url(menuleft.jpg)">
<? include("quicksearch.php"); ?>
<? include("navigation.php"); ?>
<? include("poll.php"); ?>
</td>
<td>
<table cellspacing="0" celpadding="0">
<tr width="540" height="70">
<td style="background-image:url(headercontent.jpg)">
</td>
</tr>
<tr>
<td width="540" style="background-image:url(content.jpg)">
<?
if(!isset($site)) $site="news";
$invalide = array('\\','/','/\/',':','.');
$site = str_replace($invalide,' ',$site);
if(!file_exists($site.".php")) $site = "news";
include($site.".php");
?>
</td>
</tr>
</table>
</td>
<td width="180" style="background-image:url(menuright.jpg)">
<? include("login.php"); ?>
<? include("shoutbox.php"); ?>
<? include("sc_articles.php"); ?>
<? include("counter.php"); ?>
</td>
</tr>
</table>
</td>
</tr>
<!--menu_left, content, menu_right-->
<!--footer-->
<tr height="31">
<td colspan="3" style="background-image:url(footer.jpg)">
</td>
</tr>
<!--footer-->
</table>
</td>
<td width="11" height="2011" style="background-image:url(border.jpg)">
</td>
</tr>
</table>
was kann ich tun?
ich habe ein Problem:
Ich habe ein Layout auf Tabellenbasis gemacht, jetzt habe ich das Problem, das zwischen zwei Tabellen eine Stück frei bleibt!
Ich habe in jeder Tabelle ein Hintergrundbild welches zusammen ein ganzes Bild gibt, allerdings habe ich jetzt einen Übergang drinne den ich nicht haben will...
Hier mein Code:
<table width="911" height="2011" cellspacing="0" celpadding="0" align="center">
<tr>
<td>
<table width="900" height="2011" cellspacing="0" celpadding="0">
<!--header-->
<tr height="200" width="900">
<td colspan="3" style="background-image:url(header.jpg)">
</td>
</tr>
<!--header-->
<!--last news, wars, topics-->
<tr height="120">
<td width="295" style="background-image:url(lastnews.jpg)">
<? include("sc_headlines.php"); ?>
</td>
<td width="310" style="background-image:url(lastwars.jpg)">
<? include("sc_results.php"); ?>
</td>
<td width="295" style="background-image:url(lasttopics.jpg)">
<? include("latesttopics.php"); ?>
</td>
</tr>
<!--last news, wars, topics-->
<!--spacer-->
<tr height="20" width="900">
<td colspan="3" style="background-image:url(spacer.jpg)">
</td>
</tr>
<!--spacer-->
<!--menu_left, content, menu_right-->
<tr valign="top">
<td colspan="3">
<table cellspacing="0" celpadding="0">
<tr valign="top">
<td width="180" rowspan="2" style="background-image:url(menuleft.jpg)">
<? include("quicksearch.php"); ?>
<? include("navigation.php"); ?>
<? include("poll.php"); ?>
</td>
<td>
<table cellspacing="0" celpadding="0">
<tr width="540" height="70">
<td style="background-image:url(headercontent.jpg)">
</td>
</tr>
<tr>
<td width="540" style="background-image:url(content.jpg)">
<?
if(!isset($site)) $site="news";
$invalide = array('\\','/','/\/',':','.');
$site = str_replace($invalide,' ',$site);
if(!file_exists($site.".php")) $site = "news";
include($site.".php");
?>
</td>
</tr>
</table>
</td>
<td width="180" style="background-image:url(menuright.jpg)">
<? include("login.php"); ?>
<? include("shoutbox.php"); ?>
<? include("sc_articles.php"); ?>
<? include("counter.php"); ?>
</td>
</tr>
</table>
</td>
</tr>
<!--menu_left, content, menu_right-->
<!--footer-->
<tr height="31">
<td colspan="3" style="background-image:url(footer.jpg)">
</td>
</tr>
<!--footer-->
</table>
</td>
<td width="11" height="2011" style="background-image:url(border.jpg)">
</td>
</tr>
</table>
was kann ich tun?