Why can't I set individual page titles?

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

Guest

I have a site with templates attached to the pages.
I can't change the titles of the individual pages.
Right clicking in the folder list, I can change the title, but then it
reverts.
Right clicking in the page in design mode shows the title box greyed out and
innaccessable.

When I try to bookmark any of my pages from the browser, they all have the
same title, which I supose is the title of the attached dynamic template.

What can be done?
 
On the DWT place the title and any other meta tags you wish to be editable
in editable regions. Then when you update the DWT and the pages, those
tags will not be touched, and can be changed, in the attached pages.

<head>
<!-- #BeginEditable "DocTitle" -->
<title>Title here</title>
<!-- #EndEditable -->

<!-- #BeginEditable "DocDescription" -->
<meta name="description" content="Description here">
<!-- #EndEditable -->

<!-- #BeginEditable "DocKeywords" -->
<meta name="keywords" content="keywords here">
<!-- #EndEditable -->

</head>

Or combine the individual regions:

<head>
<!-- #BeginEditable "headtags" -->
<title>Title here</title>
<meta name="description" content="Description here">
<meta name="keywords" content="keywords here">
<!-- #EndEditable -->

</head>
 
Back
Top