Why can't I set individual page titles?

V

Vince

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?
 
R

Ronx

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top