| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Mar 2005
Posts: 36
![]() | Centering PHP included files Ok, I've got a php file that builds the header and navigation bar for a webpage, and then uses a php include to include the file that builds the center of the page (this file is built by another program). The problem I'm having is that when I include the html file that builds the center of the page, some of the properties are lost. First of all, the table width shrinks down to about 1/3rd the size, and I cannot get the including page to be centered. Here is what hte file I'm including looks like on its own: http://www.clan-loh.com/dynasty/Schedule.htm As you can see, it's a nice wide table and it's centered nicely in the page. However, when I include it into the other page the page looks like this: http://www.clan-loh.com/dynasty/schedule.php The color changing is fine (style sheet), but as you can see the table size has shrunk considerably and it's not centered. I've tried sticking center tags EVERYWHERE I can think of (around the include statement, within the included file, etc) and cannot get it to center. Here is the code for the two files: schedule.php (the main page): Code: <?
include "/home/clanloh/www/www/dynasty/library.php";
Initialize("dyNASTY -- Where Fantasy Football Champions Come to Play", "4A4A4A", "E5A918", "E5A918", "E5A918");
MakeHeader();
echo '<table border="0" cellpadding ="0" cellspacing="0">';
echo '<tr>';
//left side
echo '<td valign="top">';
LeftSide();
echo '</td>';
echo '<td>';
echo ' ';
echo '</td>';
//Center section
echo '<td align="center" valign="top">';
include "Schedule.htm";
echo '</td>';
echo '</tr>';
echo '</table>';
echo '</body>';
echo '</html>';
?> Code: <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>dyNASTY Schedule</title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="schduleLayout.css">
<STYLE type="text/css">
th { font-family: Arial, Helvetica, Sans-serif;
font-size: 10pt;
font-weight: bold;
color: #000000 }
.header { font-family: Arial, Helvetica, Sans-serif;
font-size: 12pt;
font-weight: bold;
color: #FF0000 }
.title { font-family: Arial, Helvetica, Sans-serif;
font-size: 18pt;
font-weight: bold;
color: #FF0000 }
.subtitle { font-family: Arial, Helvetica, Sans-serif;
font-size: 8pt;
font-weight: bold;
color: #000000 }
.tf { font-family: Arial, Helvetica, Sans-serif;
font-size: 10pt;
font-style: normal;
color: #000000 }
.topteam {
border-bottom: 2px #000000 solid;
}
.bracket {
border-right: 2px #000000 solid;
}
.bottomteam {
border-bottom: 2px #000000 solid;
border-right: 2px #000000 solid;
}
</STYLE>
</head>
<body >
<div align="center">
<table border="0" cellpadding="0" cellspacing="8" align="center">
<tr align="center">
<td align="center" width="225">
</td>
<td align="center" width="15"></td>
<td align="center" width="80%"></td>
</tr>
<tr align="center">
<td width="125">
</td>
<td align="center" width="15"></td>
<td align="center" nowrap width="80%">
<script language="javascript">report='Standings'</script>
<script language="javascript">currentweek='1'</script>
<script language="javascript" src="2004weeks_horiz.js"></script></td>
</tr>
<tr align="center">
<td align="center" valign="top" width="225">
<script language="javascript">report='0401_'</script>
<script language="javascript" src="2004menu_vert.js"></script><br>
<p>
<script language="javascript" src="2004teams_vert.js"></script><br>
</p>
</td>
<td align="center" width="15"></td>
<td align="center" valign="top" width="80%" align="center">
<!-- Created with FFLM Version 4.15 -->
<!-- Copyright (C) Sideline Software, Inc. -->
<table width="100%" border="1" bordercolor="#E5A918" cellpadding="1" cellspacing="1">
<tr>
<td class="title" colspan="3" align="left">dyNASTY Fantasy Schedule</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #1</td>
</tr>
<tr>
<td>Metuchen Lo-Riders</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td>Topanga Tampons</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Boston Stranglers</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Philadelphia Phreaks</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #2</td>
</tr>
<tr>
<td>Toronto Mookies</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td>Colombia Dealers</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Bangkok Wangs</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Isidoros Strength</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #3</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Austin Razorbacks</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Columbus Capacitors</td>
</tr>
<tr>
<td>Metuchen Lo-Riders</td>
<td>vs</td>
<td>Boston Stranglers</td>
</tr>
<tr>
<td>Topanga Tampons</td>
<td>vs</td>
<td>Philadelphia Phreaks</td>
</tr>
<tr>
<td>Brentwood Beavers</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Micanopy Mudslides</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #4</td>
</tr>
<tr>
<td>Brentwood Beavers</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Micanopy Mudslides</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Colombia Dealers</td>
<td>vs</td>
<td>Isidoros Strength</td>
</tr>
<tr>
<td>Toronto Mookies</td>
<td>vs</td>
<td>Bangkok Wangs</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Columbus Capacitors</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Austin Razorbacks</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #5</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #6</td>
</tr>
<tr>
<td>Topanga Tampons</td>
<td>vs</td>
<td>Austin Razorbacks</td>
</tr>
<tr>
<td>Metuchen Lo-Riders</td>
<td>vs</td>
<td>Columbus Capacitors</td>
</tr>
<tr>
<td>Toronto Mookies</td>
<td>vs</td>
<td>Philadelphia Phreaks</td>
</tr>
<tr>
<td>Colombia Dealers</td>
<td>vs</td>
<td>Boston Stranglers</td>
</tr>
<tr>
<td>Micanopy Mudslides</td>
<td>vs</td>
<td>Isidoros Strength</td>
</tr>
<tr>
<td>Brentwood Beavers</td>
<td>vs</td>
<td>Bangkok Wangs</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #7</td>
</tr>
<tr>
<td>Brentwood Beavers</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td>Metuchen Lo-Riders</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Colombia Dealers</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Bangkok Wangs</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Boston Stranglers</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Austin Razorbacks</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #8</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Toronto Mookies</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Colombia Dealers</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Bangkok Wangs</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Isidoros Strength</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #9</td>
</tr>
<tr>
<td>Micanopy Mudslides</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Brentwood Beavers</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Toronto Mookies</td>
<td>vs</td>
<td>Isidoros Strength</td>
</tr>
<tr>
<td>Colombia Dealers</td>
<td>vs</td>
<td>Bangkok Wangs</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Columbus Capacitors</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Austin Razorbacks</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #10</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Boston Stranglers</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Philadelphia Phreaks</td>
</tr>
<tr>
<td>Metuchen Lo-Riders</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Topanga Tampons</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td>Brentwood Beavers</td>
<td>vs</td>
<td>Columbus Capacitors</td>
</tr>
<tr>
<td>Micanopy Mudslides</td>
<td>vs</td>
<td>Austin Razorbacks</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #11</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td>Philadelphia Phreaks</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Topanga Tampons</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #12</td>
</tr>
<tr>
<td>Metuchen Lo-Riders</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Topanga Tampons</td>
<td>vs</td>
<td>Micanopy Mudslides</td>
</tr>
<tr>
<td>Isidoros Strength</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Toronto Mookies</td>
</tr>
<tr>
<td>Columbus Capacitors</td>
<td>vs</td>
<td>Philadelphia Phreaks</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Boston Stranglers</td>
</tr>
<tr>
<td class="header" colspan="3" align="left">Week #13</td>
</tr>
<tr>
<td>Micanopy Mudslides</td>
<td>vs</td>
<td>Brentwood Beavers</td>
</tr>
<tr>
<td>Topanga Tampons</td>
<td>vs</td>
<td>Metuchen Lo-Riders</td>
</tr>
<tr>
<td>Toronto Mookies</td>
<td>vs</td>
<td>Colombia Dealers</td>
</tr>
<tr>
<td>Bangkok Wangs</td>
<td>vs</td>
<td>Isidoros Strength</td>
</tr>
<tr>
<td>Boston Stranglers</td>
<td>vs</td>
<td>Philadelphia Phreaks</td>
</tr>
<tr>
<td>Austin Razorbacks</td>
<td>vs</td>
<td>Columbus Capacitors</td>
</tr>
</table></td>
</tr>
</table>
</div>
</body>
</html> |
| |
| | #2 (permalink) | ||||
| Professional Monkey Join Date: Jul 2005 Location: Escaped from the zoo
Posts: 907
![]() ![]() | i think the problem is in your initial php file, your root table in which the left menu and the centre bit are enlcosed has no width definition try this code for schedule.php:
__________________ Webmaster Words | ||||
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tutorial: Getting started with PHP (The Basics) | deadserious | Webmaster Tutorials | 60 | 11-17-2007 12:35 PM |
| Googlism - What does google think of you? | deadserious | The Break Room | 55 | 12-15-2005 10:09 AM |
| Is this a good deal??? | balco101 | Web Hosting Discussion | 24 | 06-02-2005 11:10 AM |