Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

locked titled

Status
Not open for further replies.

vuvu

Programmer
Mar 28, 2007
4
US
I'm editing a webpage using already made template. it's an HTML file. everything is good except for the fact that the Title of the page is locked. I can't change it. so all of my pages have the same title.

I'm using DW 8 and very new at this. Please help me solve this issue. i'd appreciate your comments.

Thank you much
 
post the code...someone might have made the tile a part of 'template'

:--------------------------------------:
fugitive.gif


All around in my home town,
They tryin' to track me down...
 
here is the head code. and yes i think some one did make it part of the template. I just pick this up from someone else.

Is there anyway to correct this problem without going back the template?

thank you very much for your help

<!-- BEGIN HEAD -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />





<!-- InstanceParam name="PageTitle" type="text" value="Scott Huxtable" -->
<!-- InstanceParam name="FeaturedContent" type="boolean" value="false" -->
<title>

Scott Huxtable
| Mechanical Engineering | Virginia Tech </title>
<!-- InstanceBeginEditable name="UserMetaInfo" --><!-- InstanceEndEditable -->

<link rel="stylesheet" href="../../../assets/css/content-vertical.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../assets/css/print.css" type="text/css" media="print" />
<!--[if IE]>
<link rel="stylesheet" href="assets/css/ie.css" type="text/css" media="all" />
<![endif]-->
<script type="text/javascript" src="../../../assets/js/widgets.js"></script>

<!-- InstanceBeginEditable name="MoreCSSJS" -->
<!-- [Begin Editing Here] -->
<!-- [End Editing Here] -->
<style type="text/css">
<!--
.style12 {font-size: large; color: #600; }
.style16 {font-family: Arial, Helvetica, sans-serif}
-->
</style>
<!-- InstanceEndEditable -->
<style type="text/css">
<!--
.style1 { font-size: x-large;
font-weight: bold;
}
.style2 {font-size: small}
.style6 {font-size: x-small}
.style17 {font-size: large; color: #600; font-family: Arial, Helvetica, sans-serif; }
.style8 {font-size: medium;
font-weight: bold;
color: #600;
}
.style9 {color: #000000}
-->
</style>

</head>
<!-- END HEAD -->
 
edit your template to crrect this.
Try something int he line of:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- TemplateBeginEditable name="doctitle" -->
<title> Scott Huxtable| Mechanical Engineering | Virginia Tech </title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>

<body>
body goes here 
</body>

</html>

If you need to edit all the pages made from your locked template then use "find and repleace"

All the best!

:--------------------------------------:
fugitive.gif


All around in my home town,
They tryin' to track me down...
 
Thank you, lebisol. that works

vuvu
 
Cool, glad you got it fixed.
All the best!

:--------------------------------------:
fugitive.gif


All around in my home town,
They tryin' to track me down...
 
I did have to take the file outside of Dreamweaver, and insert the comments there. Dreamweaver wouldn't let me touch anything that is locked.

Thanks agaiin
vuvu

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top