View Full Version : keeping links on one line


richardthai
04-18-2006, 03:10 PM
Probably a simple question for you guys to answer, but hours of frustration for me.

I am using the following code for links and it is working well, but I want to have all the links on one line.

<FORM METHOD="get" ACTION="http://www.lissaexplains.com"><INPUT TITLE="submit" TYPE="submit" STYLE="background:#00ff00" VALUE="Click Here"></FORM>

If I put more than one link, they go on top of each other. Is there a simple way of keeping them on one line?

Thanks,
Richard

kiwee
04-18-2006, 04:09 PM
use tables


<TABLE>
<TR>
<TD>
<FORM METHOD="get" ACTION="http://www.lissaexplains.com"><INPUT TITLE="Link1" TYPE="submit" STYLE="background:#00ff00" VALUE="Click Here"></FORM>
</TD>
<TD>
<FORM METHOD="get" ACTION="http://www.lissaexplains.com"><INPUT TITLE="Link2" TYPE="submit" STYLE="background:#00ff00" VALUE="Click Here"></FORM>
</TD>
</TR>
</TABLE>

richardthai
04-18-2006, 08:15 PM
Hi Kiwee!

You have saved the day!!

Richard::)

kiwee
04-18-2006, 08:21 PM
no problem, come again ;)