disable the buton when viewing

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

Guest

commenly used the type. my doupt is a disable the button when viewing tha
page.
becouse we open the home button.now we can view the home page in tha brousre.
that time tha home button is coded. how to add that one.
pls send it to me.
kathir
 
kathir:
Could you please try rewording your question? I don't understand what you
are asking.

I think the OP is asking how to disable the nav button which points to
to the Home page when the user is viewing the Home page.

I assume this would need to apply to all pages in a site: that the
button pointing to the current page be disabled or greyed out.

That's my guess. ;)

fido
 
You would have to either do that with custom javascript, or with CSS,
depending on how you made your navigation elements. When using the CSS
method, you wouldn't be able to de-activate the link, but you would be able
to make the button look selected.

There is no 'built-in' function in FP that would do this for you.
 
Navigation links can also be deactivated or removed with server-side scripting.

IMO, I don't think it is a good idea to do this.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Yes - I overlooked that obvious option! Thanks, Thomas.

Deactivating the link on the page already loaded is a nicety, e.g.,

<% if page<>"this" then %><a href="this.html">
THIS
<% if page<>"this" then %></a>

--
Murray
============

Thomas A. Rowe said:
Navigation links can also be deactivated or removed with server-side
scripting.

IMO, I don't think it is a good idea to do this.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Murray said:
You would have to either do that with custom javascript, or with CSS,
depending on how you made your navigation elements. When using the CSS
method, you wouldn't be able to de-activate the link, but you would be
able to make the button look selected.

There is no 'built-in' function in FP that would do this for you.

--
Murray
============

fido said:
On Mon, 3 Oct 2005 12:20:29 -0400, "Kathleen Anderson [MVP -

kathir:
Could you please try rewording your question? I don't understand what
you
are asking.

I think the OP is asking how to disable the nav button which points to
to the Home page when the user is viewing the Home page.

I assume this would need to apply to all pages in a site: that the
button pointing to the current page be disabled or greyed out.

That's my guess. ;)

fido
 
Back
Top