Why does applying dwt to pages change the title

U

Uncle Gary

When I apply my dwt page layout to my site pages, it always changes my folder
TITLE to the same as the page filename?

How can I keep the TITLE name as I add them in the folder view?
 
R

Ronx

It sounds like your DWT does not have a page title. On the DWT place
title and meta tags in editable regions. Then when you update the DWT
and the pages, those meta tags will not be touched in the 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>
 
S

Stefan B Rusynko

PS
or just one region as in

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


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| It sounds like your DWT does not have a page title. On the DWT place
| title and meta tags in editable regions. Then when you update the DWT
| and the pages, those meta tags will not be touched in the 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>
|
| --
| Ron Symonds - Microsoft MVP (FrontPage)
| Reply only to group - emails will be deleted unread.
| FrontPage Support: http://www.frontpagemvps.com/
|
| | > When I apply my dwt page layout to my site pages, it always changes
| > my folder
| > TITLE to the same as the page filename?
| >
| > How can I keep the TITLE name as I add them in the folder view?
|
|
 

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