table resizing??

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
gavinbsocom
Forum Commoner
Posts: 71
Joined: Tue Sep 30, 2003 9:51 pm

table resizing??

Post by gavinbsocom »

Ok, this crazy looking table, and I wanted to make one for my site so I did. The table I mirored can be found at ( http://www.socombattles.com , its on the right handside, this is important for my problem) Now if you go to my site ( http://www.bniclan.com , you will see a similar table to the one on the site i mirored ont he left hand side,) Now the problem is if you go to view and change the text size on my website, that table resizes funny,, it just doesnt stay the same? but on the site i mirrored it from it never changes? What is it taht im doing wrong...here is the table section of my site, and here is the style sheet section for it....

_____________________________________________________

default.php

Code: Select all

<table align="left" class="feature" border="0" cellspacing="0" cellpadding="0">
	<td>

<table align="center" class="outside" border="0" cellspacing="0" cellpadding="0">
	<td>

<table align="center" class="nav" border="0" cellspacing="0" cellpadding="0">
	<tr><td class="hbar">Navigation</td></tr>
	<tr><td class="bar"><?php include("navigation.php"); ?></td></tr>
</table>

<br>

<table align="center" class="info" border="0" cellspacing="0" cellpadding="0">
	<tr><td class="hbar">Information</td></tr>
	<tr><td class="bar"><?php include("record.php"); ?></td></tr>
</table>

<br>

<table align="center" class="log" border="0" cellspacing="0" cellpadding="0">
	<form action="enter.php" method="post">
	<tr><td class="hbar">Login</td></tr>
	<tr><td class="bar">User Name</td></tr>
	<tr><td><input type="text" maxlength="14" name="name"></td></tr>
	<tr><td class="bar">Password</td></tr>
	<tr><td><input type="password" maxlength="8" name="pass"></td></tr>
	<tr><td><input type="hidden" name="login" value="true"></td></tr>
	<tr><td>&nbsp;</td></tr>
	<tr><td align="center"><input type="submit" value="login"></td></tr>
	</form>
</table>

<br>

<table align="center" class="slink" border="0" cellspacing="0" cellpadding="0">
	<tr><td class="hbar">Socom Clans</td></tr>
	<tr><td class="bar"><?php include("socomclans.php"); ?></td></tr>
</table>

<br>

<table align="center" class="slink2" border="0" cellspacing="0" cellpadding="0">
	<tr><td class="hbar">Links</td></tr>
	<tr><td class="bar"><?php include("socomlinks.php"); ?></td></tr>
</table>

	</td>
</table>


	</td>
</table>
________________________________________________

stylesheets :

Code: Select all

table.outside	&#123;
		width: 160;
		height: 750;
		background-color: black;
		border-width: 1px;
		border-style: solid;
		border-color: silver;
		&#125;

table.feature	&#123;
		width: 180;
		height: 760;
		&#125;
anyone see a probleM?
gavinbsocom
Forum Commoner
Posts: 71
Joined: Tue Sep 30, 2003 9:51 pm

Post by gavinbsocom »

for all that wondering, after 3 hours i got it....I set the position to absolute in the style sheet...thanks alll...
Post Reply