View Full Version : help please 2.0!!!!!!!!!!!!!


silvertail
03-08-2006, 10:33 PM
thx for your help but I've seemed to run into another problem.

its the same page as before http://www.geocities.com/kakashi_kurama/parents.html

but now I can't seem to get the form button links in the right place the home one if right but I want the stuff one right under it. I'm using the frame.

kayla09
03-09-2006, 12:17 AM
i think its a problem having to do with your div layers. you'll probably need one for the buttons and another for the content.

silvertail
03-09-2006, 12:27 AM
how can it be div. I'm using a table!? when I said frame before I ment table

Valkyrie
03-09-2006, 01:31 AM
I didn't quite understand you. You want the buttons to on the left? Next to the text?

Well, the reason that they aren't aligning is because of the table cell containing "Stuff" is under the other two cells with the image and text. If you want "stuff" right under "home", put the button in the same table cell.

I took the table cell and added the button/form, so that piece of code will now look like this:


<td valign="top">
<FORM METHOD="get" ACTION="index.html"><INPUT TITLE="submit" TYPE="submit" STYLE="background:#00ff00" VALUE="Home"></FORM>
<FORM METHOD="get" ACTION="index.html"><INPUT TITLE="submit" TYPE="submit" STYLE="background:#00ff00" VALUE="stuff"></FORM>
</td>

silvertail
03-09-2006, 03:37 AM
THX.......again. at first I had it like that I geuss I did something wrong cause it didn't work o well, now It does. how do I get rid of the space between them? thx

war59312
03-09-2006, 04:09 AM
Hey,

That's how it works, you have to have the space because each is on it's own row in the table.

Take Care,

Will

PS: Someone please correct me if I'm wrong. I have not worked with tables in years.

Valkyrie
03-09-2006, 04:22 AM
That's how it works, you have to have the space because each is on it's own row in the table.


No...the buttons are within the same table cell, so that shouldn't cause the space. The cause of the space is the form button. You can't really stack forms like that.

Silvertail, if you still want to use forms, change the <form> codes to this:


<FORM METHOD="get" ACTION="index.html">
<INPUT TITLE="submit" TYPE="submit" STYLE="background:#00ff00" VALUE="Home">
<INPUT TITLE="submit" TYPE="submit" STYLE="background:#00ff00" VALUE=" stuff ">
</FORM>


It removes some of the space.

silvertail
03-09-2006, 12:56 PM
YAY!!!!!!!!! it works!!!!! thanks soooooooo much for your help!! both times!!!!:)

war59312
03-31-2006, 04:45 AM
ok thanks for clarifing. ;)