PC Review


Reply
Thread Tools Rate Thread

Buttons in FP2002

 
 
=?Utf-8?B?TGluZGE=?=
Guest
Posts: n/a
 
      19th Sep 2005
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
 
Reply With Quote
 
 
 
 
Ronx
Guest
Posts: n/a
 
      19th Sep 2005
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>

--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"Linda" <(E-Mail Removed)> wrote in message
news:01A637B6-EAEA-4267-B59D-(E-Mail Removed)...
>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



 
Reply With Quote
 
=?Utf-8?B?TGluZGE=?=
Guest
Posts: n/a
 
      19th Sep 2005
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.
>
> "Linda" <(E-Mail Removed)> wrote in message
> news:01A637B6-EAEA-4267-B59D-(E-Mail Removed)...
> >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

>
>
>

 
Reply With Quote
 
=?Utf-8?B?TGluZGE=?=
Guest
Posts: n/a
 
      19th Sep 2005
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

"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.
>
> "Linda" <(E-Mail Removed)> wrote in message
> news:01A637B6-EAEA-4267-B59D-(E-Mail Removed)...
> >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

>
>
>

 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      20th Sep 2005
In the go back button, change
<input type="submit"
to
<input type="button"
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"Linda" <(E-Mail Removed)> wrote in message
news:62DA6275-8FC8-4942-96D2-(E-Mail Removed)...
> 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
>
> "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.
>>
>> "Linda" <(E-Mail Removed)> wrote in message
>> news:01A637B6-EAEA-4267-B59D-(E-Mail Removed)...
>> >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

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?TGluZGE=?=
Guest
Posts: n/a
 
      20th Sep 2005
Worked great...Thanks...Linda

"Ronx" wrote:

> In the go back button, change
> <input type="submit"
> to
> <input type="button"
> --
> Ron Symonds
> Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> "Linda" <(E-Mail Removed)> wrote in message
> news:62DA6275-8FC8-4942-96D2-(E-Mail Removed)...
> > 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
> >
> > "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.
> >>
> >> "Linda" <(E-Mail Removed)> wrote in message
> >> news:01A637B6-EAEA-4267-B59D-(E-Mail Removed)...
> >> >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
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Rob Giordano \(Crash\)
Guest
Posts: n/a
 
      22nd Sep 2005
Yep...and you can control your content with tables as well.



"Linda" <(E-Mail Removed)> wrote in message
news:117C87D4-CEFC-4B92-80E0-(E-Mail Removed)...
|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.
| >
| > "Linda" <(E-Mail Removed)> wrote in message
| > news:01A637B6-EAEA-4267-B59D-(E-Mail Removed)...
| > >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
| >
| >
| >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Text to fit the Vertical Nav. buttons in FP2002 =?Utf-8?B?bG9jb3ZlbA==?= Microsoft Frontpage 3 18th Aug 2006 01:33 PM
Hover Buttons in FP2002 =?Utf-8?B?Q01N?= Microsoft Frontpage 3 26th Apr 2005 10:53 AM
Hover buttons (FP2002) =?Utf-8?B?Um9nZXI=?= Microsoft Frontpage 4 29th May 2004 10:29 PM
FP2002 Buttons Styles in Link Bar Properties Frank Microsoft Frontpage 4 29th Jan 2004 06:05 PM
FP2002 Hover Buttons not displayed Mike Microsoft Frontpage 3 21st Dec 2003 11:39 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:49 PM.