Jump to content


Form is expanding table row


21 replies to this topic

#1 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 06 October 2005 - 12:39 PM

still working on the site, i ran into another problem again
ive added a from inside a table row where visitors can add their name, which will be stored in a DB. well, that doesnt really matter. what does matter is that firefox and opera are both showing the page fine, while it is messed up in IE. seems like internet explorer is expanding the table row for some reasong, totally unnecessary because it has room enough.

in firefox/opera
Posted Image
IE
Posted Image

so if you know any way to fix this (another :) ) cross browser problem please let me know B)

#2 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 05:55 AM

aw cmon, how about putting it onto an iframe with no scrolling and a transparant background -however i hate using iframes- will that work?

#3 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 06:09 AM

try setting the max-height for it with CSS, that may work...

#4 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 07:21 AM

thanks, but that didnt work <_<

#5 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 07:26 AM

hmm, could i get a look at your source code please?

or the .html page or whatever and the css code if u have one

Edited by d7x, 07 October 2005 - 07:27 AM.


#6 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 07:34 AM

html

........  
<table width="100%" height="25" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="1%">&nbsp;</td>
<td width="16%" class="Bars">Please enter your name </td>
<td width="58%" height="25" valign="top">
<form action="yo.php" method="post" name="name" id="name">
 <input name="name" type="text" class="textfield" id="name" size="10" />
<input type="submit" name="Submit" value="ok" class="button" />
</form>
</td>
<td width="25%" height="25">&nbsp;</td>
</tr>
</table>

css

body {
background-color: #181818;
margin: 0px;
}
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
a:hover {
	text-decoration: none;
	color: #bb0d00;
}
a:active {
	text-decoration: none;
	color: #FFFFFF;
}
.Bars {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 8pt;
}
.Schedule {
	font-family: Verdana;
	color: #FFFFFF;
	font-size: 8pt;
}
.BigFont {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 14pt;
}
.BigFontColoured{
	font-family: Arial, Helvetica, sans-serif;
	color: #bb0d00;
	font-size: 14pt;
}
.Main {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 9pt;
}
.MainColoured {
	font-family: Arial, Helvetica, sans-serif;
	color: #bb0d00;
	font-size: 9pt;
}
.textfield {
background-color: #0b0b0b;
color: #FFFFFF;
border: #bb0d00 1px solid;
}
.button {
background-color: #0b0b0b;
border: #bb0d00 1px solid;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color: #FFFFFF;
}

<_< :(

Edited by Avalanche, 07 October 2005 - 07:35 AM.


#7 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 07:40 AM

<td width="25%" height="25">&nbsp;</td>

try removing that line and try it

#8 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 07:52 AM

nothing <_<

removed some useless stuff and tried again but still nothing happens :(

new html

<table width="100%" height="25" border="0" cellpadding="0" cellspacing="0" class="Bars">
<tr>
<td height="25">
<form action="yo.php" method="post" name="name" id="name">
&nbsp;Please enter your name 
<input name="name" type="text" class="textfield" id="name" size="10" />
<input type="submit" name="Submit" value="ok" class="button" />
</form></td>
</tr>
</table>


#9 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 07:57 AM

hmm, well if u added the image to the css code, you could do
background-repeat: no-repeat;
to it, that should solve it i believe, cause in that html and css could i see no url for the image or anything

#10 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 08:04 AM

now there is a big black gap under it :S

Posted Image

#11 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 08:05 AM

hmm, try taking out anything that would space it, in ur html code if you have any, ill look more into this when i get home...

#12 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 08:10 AM

theers nothing that could possibly space it and if theer would be it would, there would be a gap in firefox and opera too <_<

well, thanks for all your help so far :(

#13 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 11:06 AM

hmm, could i get a link to the site? or is it just local? and show me ur source code now with what you edited again...

#14 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 11:35 AM

it is on local, and i havent editted anything since my last code, i tried to put it into an iframe but that doesnt look too good either, and allowtransparency doesnt even work in both firefox and opera, so thats not an option.
:):(

#15 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 11:59 AM

umm have you tried changeing the table heights? in the code i see some height in it, maybe that?

#16 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 01:25 PM

yup... :)
i think i tried everything :(:(:(

#17 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 01:59 PM

dang.... well ima outta ideas right now... hmm, would it be possible if i could get the files? so i could try working on it?

#18 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 02:37 PM

sure, i know i can trust you :)
do you want me to mail them to you?
or host them and mail you the link would probably be easier...

#19 d7x

    P2L Jedi

  • Twodded Staff
  • PipPipPip
  • 586 posts
  • Gender:Male
  • Location:Virginia
  • Interests:Life

Posted 07 October 2005 - 02:42 PM

any way you want, just gimme me a link here or at my email: pursuitmentality@gmail.com

#20 Av-

    I Feel Left Out

  • Members
  • PipPipPipPip
  • 1,971 posts
  • Gender:Male
  • Location:10 ft. below sea level

Posted 07 October 2005 - 02:53 PM

i rather not post the link here, i dont like the idea anyone can download and use it after all the hard work :)
check your email





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users