I can't modify the title in my template pages?

Hi
I'm developing a site from a template and have most of the site built.  I did have some issues with the template and errors earlier on in the process when I was working when I should have been sleeping, I think I erased the 'doctile' in the head of the template.  The template still updates the child pages, but now I've discovered I can't change the title on the template pages and I think I've made a real mess out of the template.  Can you pleae have a look and possible let me know where I go from here to resolve this issue.
Thanks..

Copy and Paste this code into a new, blank, HTML document.  Save As a new template in your Templates folder.  Test it first.  If it works as it should, save it over your old design_template.dwt.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>feelright</title>
<!-- TemplateEndEditable -->
<link href="../css2/feelright2.css" rel="stylesheet" type="text/css" />
<!--[if IE 5]>
<style type="text/css">
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 230px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 30px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
</head>
<body>
<div id="container">
<div id="header">
<img src="../images/feelright2_HeaderBanner.jpg" alt="feelright top banner" width="700" height="125" />
<!-- end #header --></div>
<div id="navcontainer">
<ul>
<li><a href="../feelright2_index.html">Home</a></li>
<li><a href="../feelright2_bio.html">Bio</a></li>
<li><a href="../feelright2_MEDITATION.html">Meditation</a></li>
<li><a href="../feelright2_specials.html">Specials</a></li>
<li><a href="../feelright2_gifts.html">Gifts</a></li>
<li><a href="../feelright2_products.html">Products</a></li>
<li><a href="../feelright2_services.html">Services</a></li>
<li><a href="../feelright2_contact.html">Contact</a></li>
<li><a href="../feelright2_faq.html">FAQ</a></li>
</ul>
<!--end navcontainer --></div>
<div id="sidebar1">
<h3>Auricular Acupuncture!</h3>
<p>Reduces the physical symptoms of withdrawal, relieves depression, anxiety and insomnia. Patients learn to 'let go' of tension and preoccupations. The calm stability in the acupuncture setting creates a relatively timeless process. There is much less pressure to improve according to guilt-related standards......<br />
<a href="../feelright2_auricular.html">read more</a></p>
<p><img src="../images/feelright2_littleSTONeman.jpg" alt="#" width="200" height="150" /></p>
<h3>Meditation!</h3>
<p>There are many different forms of meditation that can help a  person to achieve different goals.Meditation is an activity that is responsible for channeling a person's.....<br />
<a href="../feelright2_MEDITATION.html">read more</a></p>
<p><img src="../images/200px_sunrise.jpg" alt="#" width="200" height="136" /></p>
<h3>Testimonials!</h3>
<p>We learn from our experiences. Read what other clients have to say....<br />
<a href="../feelright2_testimonials.html">read more</a></p>
<!-- end #sidebar1 --></div>
<div id="mainContent">
<!-- TemplateBeginEditable name="EditRegion1" -->
<h1>title</h1>
<p>Page content goes here</p>
<!-- TemplateEndEditable -->
<!--end #mainContent --> </div>
<!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
<br class="clearfloat" />
<div id="footer">
<p>Copyright &copy; feelright.ca 2009-2010</p>
<!-- end #footer --> </div>
<!-- end #container --></div>
</body>
</html>
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • How do I modify the Title Column of a Task List using JSLink

    I would like to modify the title column of a Task List in SharePoint 2013. I would like to make the title column different colors based on a selection in another field. For some reason I can run the TitleRendering function
     on a different filed and it works perfectly, but when I try to run it on the Title field it is completely ignored. Is there some kind of work around for this?
    var taskSample = taskSample || {};
    taskSample.CustomizeFieldRendering = function () {
    RegisterSod('hierarchytaskslist.js', '/_layouts/15/hierarchytaskslist.js');
    LoadSodByKey('hierarchytaskslist.js', null);
    // Intialize the variables for overrides objects
    var overrideCtx = {
    Templates: {
    Fields: {
    "Title": {
    'View' : taskSample.TitleRendering
    // Register the override of the field
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
    taskSample.TitleRendering = function (ctx) {
    var output = [];
    switch(ctx.CurrentItem.Unit) {
    case "Unit 1":
    output.push('<span style="color: blue;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 2":
    output.push('<span style="color: green;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 3":
    output.push('<span style="color: red;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 4":
    output.push('<span style="color: yellow;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 5":
    output.push('<span style="color: orange;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 6":
    output.push('<span style="color: pink;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    default:
    output.push(ctx.CurrentItem.Title);
    break;
    return output.join('');
    taskSample.CustomizeFieldRendering();

    Hi,
    Per my understanding, the TitleRendering function is not been applied to the Title column of the Task list.
    I suggest you replace the “Title” with “LinkTitle” in your .js file:
    var overrideCtx = {
    Templates: {
    Fields: {
    "LinkTitle": {
    'View' : taskSample.TitleRendering
    In IE Developer Tools, we can see that the “name” attribute of the Title column is “LinkTitle”:
    Best regards
    Patrick Liang
    TechNet Community Support

  • How can i change the title and image of  published exe

    Hi ,
    I have published a fla file in exe format .
    how can i change the title and image of this exe? do I ve to
    use some of the available softwares in the market? cant i do the
    customised setting in the flash player itself?

    On Fri, 4 Apr 2008 06:21:15 +0000 (UTC), "mFlexDev"
    <[email protected]> wrote:
    > I have published a fla file in exe format .
    > how can i change the title and image of this exe?
    I beleave the easiest way is to use PEResourceExplorer,
    Resource
    Hacker or similar software to modify EXE resources, such as
    window
    title and window icon.

  • Modify the title and the label of buton close of the help window popup

    Hello everybody.
    I am looking for a way to modify the title of window popup and the label of the close buton of the popup window help text.
    In my item template item, I am using the following in order to pop the window help :
    <a href="javascript:popupFieldHelp'#CURRENT_ITEM_ID#','&SESSION.')
    Thanks for any help.
    Lila

    Hi lila
    Let us say that you have page 1 on which you want to show help for some item....
    So in Post Element Text you can put an image tag ( for help) which onclick will call the function ...
    function helpWin()
    var URL = 'f?p=999:2:&SESSION::NO::';
    w = open(URL,1,"Scrollbars=0,resizable=0,width=600,height=600");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    so page 2 is your customisable help page...in which you can put page title ,customise button etc....
    hope it helps
    thanks
    -prashant

  • How can I modify the speed of an titel?

    Hello,
    I have the following question. How can I modify the speed of an title.
    e.g. The "Starwars" Title.
    My problem is, that the words are flying in to quick.
    The people can not read the text...
    Thanks for your help!

    speed = length x time
    make you text shorter, or make the title appear longer to reduce speed.

  • How can I modify the new Hebrew language icon (א) to revert back to the Israeli Flag ?

    The Hebrew language icon in Mac has always been , at least for the last 20 years! However, in Yosemite, it's now א. How can I modify the icon? There must be a library of images somewhere in the System, where I can replace the icon...
    Thanks for your help!
    Eric

    The DOM Inspector (DOMi) has a menu item (Edit > Select Element By Click) and a toolbar button "Find a node to inspect by clicking on it" (left icon on the toolbar in the DOMi).
    * open the browser window in the DOMi (File > Inspect <b>Chrome</b> Document) and choose the first entry from the drop-down list.
    * click the "Find a node to inspect by clicking on it" button and use the keyboard (Alt Tab) or the Task bar to go back to the browser window (do not click in the browser window other than the title bar).
    * click that element with the mouse and keep the button pressed until you see a red border to indicate the the DOMi has located that element in the DOM tree.
    *DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/
    *https://developer.mozilla.org/Introduction_to_DOM_Inspector
    *https://developer.mozilla.org/DOM_Inspector

  • How can I modify the Contacts Template to display additional fields with out selecting "add field" everytime?

    How can I modify the contacts template in either iCloud, my iPhone, or my iPad to display additional fields that I always use ... example: How can I get Job Title to always be a fillable field with out selecting "add field" everytime?

    Let the HairSalon implement the java.lang.Comparable interface. You'll need to write code for
    public int compareTo(Object o1, Object o2)
    The compare method would cast the Objects to HairSalons and return the difference in price.
    Then use java.util.Arrays.sort(Object []);

  • When I try to import songs from a CD into iTunes it can't find the titles online.  This wasn't a problem previously, now it is.  There is nothing wrong with my internet.  Any solutions?  Help says try again later but no luck there.

    When I try to import songs from a CD into iTunes it can't find the titles online.  This wasn't a problem previously, now it is.  There is nothing wrong with my internet connection.  Any solutions?  Help says to try again later but no luck there.  I've tried multiple times with multiple CDs.

    To answer the post title FireFox save all downloads automatically in the download folder, which you can find in the Documents folder. If you want to choose where to save your downloads go to tools>options>check always ask me where to save files.
    Secondly, I am assuming you have IE 8 installed as this is the only version that supports this fix that is currently not in beta. Go to control panel>internet options>advanced tab and reset the settings at the bottom. This may or may not fix the problem but it is a good first step.

  • Can you modify the price of a contract in the ME32K directly from the item

    Hello,
    I am in ECC6.0
    I need to modify the price of an item in the contract (ME32K WK or MK) but it is grey (only in display). So I must do Item-Condition and then I can modify the price of the item.
    Can you modify the price of a contract in the ME32K directly from the item screen?
    I have try with several field selections but nothing.
    AKTV     Change
    MKK     Quantity contract (for MK)
    WKK     Value Contract (for WK)
    PT0K     Standard item contract
    Cheers,
    Marta

    HI,
    If you maintain any condition in the contract line item condition, like freight, discount etc. the landed price gets populated in the line item price field. So if you want to make any change in base price, it has to be changd in the line item condition.
    This is because, You can maintain different validity period in condition and maintain different price in each validity period. So which price you want to pick? So the system captures the price from condition and populate it in the item price field depending on the validity period price.
    Hope this helped you.
    Regards

  • Can I modify the column "Net Price" of purchase order to display 3 decimals

    Dear expert,
         Can I modify the column "Net Price" of purchase order to display 3 decimals?
         Looking forward to your reply.
         Many thanks.
    Best Regards,
    Merry

    Hi,
    You can easily change ur decimal place in OY04 by seeting number of decimal place to ur currency.
    But be careful as it cause a huge effect to ur finance documents, read system message carefully before applying.
    Regards
    ManUfacTuReR

  • When I select a title in the iTunes Store and click on Play in iTunes I am sent to the download page for iTunes 10 which I have already. The selected title cannot be found anywhere in my iTunes. How can I get the title in iTunes with possibility to buy it

    When I select a title in the iTunes Store and click on Play in iTunes I am sent to the download page for iTunes 10 which I have already. The selected title cannot be found anywhere in my iTunes. How can I get the title in iTunes with possibility to buy it?

    The issue is that your credit or debit card credentials must be associated with the same country where you reside in order to purchase iTunes content.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching the billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations, although it’s worth nothing that features like iTunes in the CLoud and iTunes Match are designed to work best when using a single iTunes Store account, as you can only switch accounts with these services every 90 days."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • Modify the title of a wad report at run time.

    Hello Gurus,
    i have a query in a report which lists the products.On clicking on a product, it takes me to anthr template which has the details of that product.The current scene is that whenever the user selects a product its detail report opens in a new browser.
    The requirement is to display the name of the product in the tiltle bar of the browser.
    I have the value of prod selected in a var(thru ABAP code), how can i set the title of the summary report at run time??
    Please send suggestions ASAP.
    Thanks
    Regards,
    priya

    Hi Priya,
    insert a text element into your detail web template and surround it by
    <div id="someid" style="display:none">
    <!-- your text element -->
    </div>
    The text element should display the value of the selected product and its property "ONLY_VALUES" should be set to "X". Now you can access the value of your selected product via JavaScript:
    <script language="JavaScript">
    function getSelectedProduct() {
      var selectedProduct = document.getElementById("someid").innerHTML;
      return selectedProduct;
    </script>
    Now you can set your title with the selected product.
    I hope this helps a bit.
    Greetings,
    Daniel

  • How can I copy the titles from a project volume one use them for the rest?

    I'm editing a four DVD set, and would like to use the same opening titles and credits for each. How can I copy the titles from volume one and use them for the rest? Thank you.

    Open the project that has the titles you want to use. Select (highlight) all the title clips you want, then right-click and choose COPY.
    Open the new project(s), then paste the titles onto the Timeline.
    Done.
    -DH

  • How can we modify the maximum no. of columns in pivot table ?

    hi all,
    How can we modify the maximum no. of columns in pivot table ?
    do i need to change the nqconfig.ini or instanceconfig file or else?
    thnx..

    A little search on the forum :
    In the instanceconfig.xml add a <PivotView> element under <ServerInstance> if one does
    not exist already.
    Within the <PivotView> element add an entry that looks like:
    <MaxCells>nnnnnn</MaxCells>
    where nnnnnn is your desired limit for the maximum total number of cells allowed
    in a pivot.
    Warning: an excessively large number will cause more memory consumption and
    slower browser performance.The details here :
    Oracle BI EE (10.1.3.2): Maximum total number of cells in Pivot Table excee

  • How can I have the title of the document be in the email subject line automatically when sending?

    How can I have the title of the document be in the email subject line automatically when sending?

    It can be done if you use a script, like this one:
    this.mailDoc({cTo: "[email protected]", cSubject: this.title});

Maybe you are looking for

  • Stop times not working in latest update

    I updated my iTunes a few days ago. Today I discovered that my stop and start times I had placed on some of my tunes have been reset to the original times. I can adjust them (the changes show in the Info panel) but that does not affect playback: the

  • Because of a POLL() Timeout, Listener Connection to a DB Takes Long Time!

    Envionment: OS: OEL5.3 (2.6.18-128.el5Xen) x86-64bit RDBMS: 11.1.0.7 (in an OVM setup) The Problem: It takes more than 10 seconds to get connected to the 11.1.0.7 database using SQL*Net with dedicated servers. Points to consider: 0. I posted this in

  • Windows 7 Drivers Wont Install Correctly

    Hello, I have been attempting to install Windows 7 on my Macbook Pro via Bootcamp. I succesfully install windows, i put in the snow leopard install disc and install the drivers, it says i have installed them succesfully, but when i restart my compute

  • Increasing font size / captions of pictures in slideshow view

    Hello, Is there any way to make the caption / font, that appears below the pictures while viewing the individual pictures in a slideshow, larger? I can change the font size using the inspector on the static iWeb page, but when I publish to the websit

  • Connect oracle forms to sql server 2000

    Kindly tell me what kinds of scripts i have to install in SQL Server.