Buttons in FP2002

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I haven't been able to figure out how to get buttons with hyperlinks on 1
line. Please see www.tatersacs.com. See The Series. Select any book. Go to
the bottom of the page. I'd like to have the three options on 1 line. I've
played with this for the last day but don't know enough about coding html to
get it done.

Thanks for your trouble...Linda
 
Put the buttons in a single row three column table:

Change
<p align="center">&nbsp;
<button type="button" onclick="history.go(-1)" style="font-size: 10pt;
font-weight: bold; color: #FFFFFF; background-color: #0000FF">&nbsp;
Go Back&nbsp;&nbsp; </button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
<form action="b_guide_interview.htm">
<p align="center"><b>
<input type="submit" value="Next Book" style="font-size: 10pt;
color: #FFFFFF; background-color: #0000FF; font-weight:bold"></b>
</p>
</form>
<p></p>
<form action="s_form_teams.htm">
<p align="center"><b>
<input type="submit" value="Sample Lesson" style="font-size: 10pt;
color: #FFFFFF; background-color: #0000FF; font-weight:bold"></b>
</p>
</form>

To

<table align="center" cellspacing="0" border="0" cellpadding="4">
<tr>

<td><form><input type="submit" onclick="history.go(-1)" value="Go
Back" style="font-size: 10pt; font-weight: bold; color: #FFFFFF;
background-color: #0000FF;"></form></td>

<td><form action="b_guide_interview.htm">
<input type="submit" value="Next Book" style="font-size: 10pt;
color: #FFFFFF; background-color: #0000FF;
font-weight:bold"></form></td>

<td><form action="s_form_teams.htm"><input type="submit" value="Sample
Lesson" style="font-size: 10pt; color: #FFFFFF; background-color:
#0000FF; font-weight:bold"></form></td>

</tr></table>
 
I had no idea that tables could be so useful. I never would have figured out
that you could put forms in tables. Thanks so much for you help. You made
it look so simple.

Thanks again...Linda
 
The items line up beautifully now, but it looks like my back button is no
longer working. It takes me to the top of the page I'm on, instead of the
last page I came from.

I believe I have the code just as you suggested. Again the website is
www.tatersacs.com. Select The Series. Any book. Buttons at bottom - Just
the Go Back button isn't working.

Thanks again...Me
 
Yep...and you can control your content with tables as well.



|I had no idea that tables could be so useful. I never would have figured
out
| that you could put forms in tables. Thanks so much for you help. You
made
| it look so simple.
|
| Thanks again...Linda
|
| "Ronx" wrote:
|
| > Put the buttons in a single row three column table:
| >
| > Change
| > <p align="center">
| > <button type="button" onclick="history.go(-1)" style="font-size: 10pt;
| > font-weight: bold; color: #FFFFFF; background-color: #0000FF">
| > Go Back </button> </p>
| > <form action="b_guide_interview.htm">
| > <p align="center"><b>
| > <input type="submit" value="Next Book" style="font-size: 10pt;
| > color: #FFFFFF; background-color: #0000FF; font-weight:bold"></b>
| > </p>
| > </form>
| > <p></p>
| > <form action="s_form_teams.htm">
| > <p align="center"><b>
| > <input type="submit" value="Sample Lesson" style="font-size: 10pt;
| > color: #FFFFFF; background-color: #0000FF; font-weight:bold"></b>
| > </p>
| > </form>
| >
| > To
| >
| > <table align="center" cellspacing="0" border="0" cellpadding="4">
| > <tr>
| >
| > <td><form><input type="submit" onclick="history.go(-1)" value="Go
| > Back" style="font-size: 10pt; font-weight: bold; color: #FFFFFF;
| > background-color: #0000FF;"></form></td>
| >
| > <td><form action="b_guide_interview.htm">
| > <input type="submit" value="Next Book" style="font-size: 10pt;
| > color: #FFFFFF; background-color: #0000FF;
| > font-weight:bold"></form></td>
| >
| > <td><form action="s_form_teams.htm"><input type="submit" value="Sample
| > Lesson" style="font-size: 10pt; color: #FFFFFF; background-color:
| > #0000FF; font-weight:bold"></form></td>
| >
| > </tr></table>
| >
| > --
| > Ron Symonds
| > Microsoft MVP (FrontPage)
| > Reply only to group - emails will be deleted unread.
| >
| > | > >I haven't been able to figure out how to get buttons with hyperlinks
| > >on 1
| > > line. Please see www.tatersacs.com. See The Series. Select any
| > > book. Go to
| > > the bottom of the page. I'd like to have the three options on 1
| > > line. I've
| > > played with this for the last day but don't know enough about coding
| > > html to
| > > get it done.
| > >
| > > Thanks for your trouble...Linda
| >
| >
| >
 
Back
Top