Missing body tag from my code?

Hi, my server (Domain Express / Parallels) won't let me edit my live website (in WYSIWYG mode) because it can't find the <body> tag. It all works perfectly in the site I created in iWeb - www.franhayterconsulting.co.uk , but not working at all in the one I have used Dreamweaver for - www.kateharrisconsulting.co.uk . Is there a genius out there that can help spot what I've done differently?
As a newbie, iWeb and Dreamweaver are so helpful for simple sites - but unfortunately the first sign of a problem and I'm clueless!! Thank you so much for any advice, much appreciated indeed.

The minimum structure for an HTML document looks like
<!doctype html>
<html>
     <head>
     </head>
     <body>
     </body>
</html>
The highlighted tags are not present in your document.
Also have a look here http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.kateharrisconsulting.co.uk%2F
Gramps

Similar Messages

  • Retrieving missing keyword tags from a previous version of Photoshop Elements

    I just purchased an upgraded version of Photoshop Elements 12 and Premiere Elements 12, but after all my photos were converted to the new version, all of my keyword tags from the previous version are not showing.  How do I retrieve them?

    Thank you so much.  I had tried to use both of those buttons, but I didn't know that I had to use them in that order in order for the tags to show up, and I couldn't find the answer in the Adobe help section, either.  Looks like all my tags are there and the problem is solved.  Thanks again.

  • Prevent missing file/object from stopping code.

    How do I prevent assigning of an object that doesn't exist to a variable from stopping the script?  For example, I want to assign the application 800x600.psd to a variable, if it's open, so that the program can make use of it, but if it's not open, I don't want the script to stop on the error that it could not find it.  The code I use to assign this file to a variable is:
    var theScaledDoc = app.documents.getByName("800x600.psd");
    But if I run this without that file currently open in Photoshop, it stops the script with the error "No such element".  How do I bypass this error if the file is not open, yet assign it if it is open?
    Thanks for any help!
    dgolberg

    You could trap the error and open the file if required ie:-
    function main(){
    try{
       var theScaledDoc = app.documents.getByName("800x600.psd");
       }catch(e){
           if (confirm('The file is not open. Would you like to open it?')) {
               var theScaledDoc = File.openDialog("Please select Image","*.*");
               open(theScaledDoc );
               }else{
                   return;
    main();

  • MarshalException: Missing end tag for body or Envelop

    Hi, I am new at this, pls advise.
    I have been trying to code a 'hello world' that returns a string, as below.
    //==================
    package simple;
    public class HelloWorld{
    public String sayHello() {
    return "hello";
    //===================
    and my buil.xml looks like this
    //===================
    <project name="simple" default ="all">
    <property file="../properties.txt"/>
    <property name="temp_dir" value="tmp_build" />
    <target name="all" depends="clean,ear,deploy" />
    <target name="clean" >
    <delete dir="${classDir}/tutorial/simple" />
    <delete file="${appDir}/simple.ear" />
    <delete dir="${temp_dir}" />
    <delete file="client.jar" />
    </target>
    <target name="build" depends="ear" />
    <target name="ear" >
    <delete dir="${temp_dir}" />
    <mkdir dir="${temp_dir}" />
    <mkdir dir="${temp_dir}/WEB-INF" />
    <mkdir dir="${temp_dir}/WEB-INF/classes" />
    <javac srcdir="." includes="HelloWorld.java"
    destdir="${temp_dir}" />
    <servicegen
    destEar="simple.ear"
    warName="simple.war"
    contextURI="simple">
    <service
    javaClassComponents="simple.HelloWorld"
    targetNamespace="http://examples/simple"
    serviceName="Echo"
    serviceURI="/HelloWorld"
         generateTypes="True"
    expandMethods="True"
    style="document">
    <client
    packageName="tutorial.simple.client"
    clientJarName="client.jar"
    />
    </service>
    <classpath>
    <pathelement path="${temp_dir}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </servicegen>
    </target>
    <target name="deploy">
    <copy file="simple.ear" todir="${appDir}"/>
    </target>
    </project>
    //======================
    I manage to deploy and run the service on weblogic through the browser. Next, when I try to run it on Java Wirelesss Tookit. I get a "MarshalException: Missing end tag for Body or Evelop" error.
    I basically used the stub generator from WTK and use them as below
    //====================
    try {
    String str = service.sayHello();
    System.out.println( str );
    } catch (Exception e) {
    e.printStackTrace();
    //=====================
    I have no problem running other examples, just this one which i coded on my own. Can anyone pls enlightent me :)

    Hi all,
    as many developers I have encountered the famous "java.rmi.MarshallException:(1)Missing end tag for Body or Envelope" during the development of my WS app for J2ME (JSR 172).
    It is correct that is the empty tag <soapenv:Header /> causing this error.
    To fix this error, it is necessary to stop the server to generate this empty header in the response stream.
    I have fixed this error for Axis2: unfortunaly it is necessary to modify a class in Axiom library. This library is used in Axis2 to produce the SOAP response, you can download the source code at http://ws.apache.org/commons/axiom/source-repository.html.
    Here the class to modify:
    axiom\modules\axiom-impl\src\main\java\org\apache\axiom\soap\impl\llom\soap11\SOAP11Factory.java
    by commenting the line 273 in the method called getDefaultEnvelope() to prevent the empty header insertion in SOAP response:
    public SOAPEnvelope getDefaultEnvelope() throws SOAPProcessingException {
            OMNamespace ns =
                    new OMNamespaceImpl(
                            SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI,
                            SOAP11Constants.SOAP_DEFAULT_NAMESPACE_PREFIX);
            SOAPEnvelopeImpl env = new SOAPEnvelopeImpl(ns, this);
            //createSOAPHeader(env); the line to be commented
            createSOAPBody(env);
            return env;
        }Finally you have to recompile Axiom using Maven to obtain the fixed package axiom-impl.jar and to replace this package on the lib repository of your Axis2 server.
    A little tricky to fix this bug but now my app runs perfectly ;)
    Enjoy!
    Romain Pellerin
    http://www.gasp-mobilegaming.org

  • WS - "java.rmi.MarshalException: (1)Missing end tag for Body or Envelope"

    HI All,
    I'm new of this forum but I really hope you could help me solving the problem I have to connect Web Services and midlets.
    Somehow my configuration works with some services I've found online but when I invoke very simple services deployed on my server(s) I always have "java.rmi.MarshalException: (1)Missing end tag for Body or Envelope" exception"
    Let me add some more information to the problem:
    System Configuration:
    - JBoss (but I also tried axis) - standard installation (http/1.1)
    - WTK 2.5 (but I also tried 2.2) - standard installation
    - I tried "trusted" and "untrusted" security configuration of the servlet
    - Netbeans IDE 5.0 (to create both Midlets and WS)
    - WS uses document/literal as expected by JSR 172
    The midlet is created with no problems but at the time of invocation the server throws the above exception (which is part of rmi. remoteException)
    By monitoring the network both at client and server side I noticed that the information received is chuncked after 768 bytes. However, If the (soap) reponse is less than such value, I still have the error.
    Using Http/1.1. at the mobile side, the service does not return me anything (0kb) while if I set the mobile device to http/1.0, I get the above error.
    I really have to make the midlet running so any type of help will be really appreciated!!
    Thanks in advance

    Hi all,
    as many developers I have encountered the famous "java.rmi.MarshallException:(1)Missing end tag for Body or Envelope" during the development of my WS app for J2ME (JSR 172).
    It is correct that is the empty tag <soapenv:Header /> causing this error.
    To fix this error, it is necessary to stop the server to generate this empty header in the response stream.
    I have fixed this error for Axis2: unfortunaly it is necessary to modify a class in Axiom library. This library is used in Axis2 to produce the SOAP response, you can download the source code at http://ws.apache.org/commons/axiom/source-repository.html.
    Here the class to modify:
    axiom\modules\axiom-impl\src\main\java\org\apache\axiom\soap\impl\llom\soap11\SOAP11Factory.java
    by commenting the line 273 in the method called getDefaultEnvelope() to prevent the empty header insertion in SOAP response:
    public SOAPEnvelope getDefaultEnvelope() throws SOAPProcessingException {
            OMNamespace ns =
                    new OMNamespaceImpl(
                            SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI,
                            SOAP11Constants.SOAP_DEFAULT_NAMESPACE_PREFIX);
            SOAPEnvelopeImpl env = new SOAPEnvelopeImpl(ns, this);
            //createSOAPHeader(env); the line to be commented
            createSOAPBody(env);
            return env;
        }Finally you have to recompile Axiom using Maven to obtain the fixed package axiom-impl.jar and to replace this package on the lib repository of your Axis2 server.
    A little tricky to fix this bug but now my app runs perfectly ;)
    Enjoy!
    Romain Pellerin
    http://www.gasp-mobilegaming.org

  • Missing closing body tag

    Hello,
    I'm seeing an issue that has been mentioned a couple of times in this forum, but hasn't been resolved -- at least no final resolution is posted.
    The behavior is that the closing body tag is missing from rendered pages which use the ui:body tag. This does not appear to be related to tiles of jsp fragments specifically.
    I am posting an identical question to the JSF forums since this is a component from the webui jar.
    Thanks so much for listening and please post if you know anything about this issue and its resolution.

    I am getting this too. My pages are all designed as flow-layout with embedded group panels. All my group panels have "block" set (making them divs).
    I have made the following observations.
    If a page is navigated to by typing the url into the browser address bar, or by clicking on a hyperlink (with no action defined) then the page is rendered without a closing body tag </body>
    If a page is navigated to by clicking on a link which has an action defined, then the resultant page is rendered with a closing body tag.
    In addition I have noticed that if you have group panels embedded in each other, some with block set (div), and others with block not set (span) then the closing tags sometimes do not match e.g. you may get two opening tags like <div><span> but the closing tags will be </div></div> which can cause no end of formatting issue. As a workaround I make all my group panels blocks so that this does not happen.

  • Help! BC-Muse : Custom Code before closing Body tag

    I have a  project that is ongoing am constantly updating and publishing from Muse. I also have a custom code that is inserted before the closing body tag that I can't place in Muse (Because the feature is not supported). Every time I publish in Muse I lose this code because Muse will override the page always. So I have to go the code section in BC for the page and reinsert the code. This is giving me headache and stress on my back and sight.
    How can I permanently place  this code before the closing body tag once without the stress mentioned earlier and without Muse re-writing the code for that specific page (I used to think Muse publish edited pages and not the entire site, even when the option to publish 'only modified pages is selected'). Please HELP!

    Thanks Zak, this is the code:
      <script>
    $('#pdropdown').change( function() {
    $('#pdetails>*:not(.hide)').toggleClass('hide');
    var optionVal = $(this).val();
    $('#'+optionVal+'.hide').toggleClass('hide');
    </script>
    I have a web app that loads product list into a dropdown list. (How I wish we had a dropdown list form in Muse that can work with BC web app or a drop down list that can be use to target a specific  widget ID.) Maybe its time Muse widgets have ID so we can target them to appear by fading in, sliding in, etc.)

  • Have mutli ver of LV -7.1 to LV10sp1 on XP PC. DAQmx - nilvaiu.dll missing when try to open CODE from WIN7 32 bit LV10?

    Have mutli ver of LV -7.1 to LV10sp1 on XP PC.  DAQmx - nilvaiu.dll missing when try to open CODE from WIN7 32 bit LV10?
    What Driver do I need?  VERSION Please -- DAQmx works fine in LV8.6.
    Solved!
    Go to Solution.

    Hi Briana,
    I believe I understand what you're asking, but which current DAQmx driver are you using with LV 2010?  Only the 9.1.5 and above drivers are compatible with LV 2010, while many of the older drivers will still work for you in LV 8.6.  Below, I've linked a compatibility chart for DAQmx drivers and Labview versions. 
    http://digital.ni.com/public.nsf/allkb/F4E76EC05118F72D8625773000672298
    Does this answer your question?
    Regards,
    Austin S.
    National Instruments
    Academic Field Engineer

  • Need to have option to place html code in body tag

    right now one can place code in the head tag but not the body tag.  that is a needed feature.  for example, to use a counter, like with statcounter.com, you have to place the code in the body tag (at the end they say).  that is not an option with muse.  i am told you need to use an external editor to do that.  I don't want to do that. should be able to do it through muse.  any chance of this being added soon?
    thank you,
    Victoria

    But then won't I have to parse through the entire HTML document to find out where it is linking to?

  • Code above closing body tag.

    Hi,
    How do I add a code in Muse that should be placed directly above the closing <body> tag?

    You can insert your custom HTML through Object -> Insert HTML option, then once it populates, drag it to the bottom corner in Design mode. The code may not place exactly above the closing body tag but above "JS includes" and shouldn't really affect the functionality of your custom HTML. Can you try it out?
    Thanks,
    Vinayak

  • Remove Cdata tags from XML body

    Integration Broker message is being publish from the Peoplecode in the savepostchange event of a page......So basically when they click on the save, it is being published.
    ok, I have title field on a page and the user entered special character "&" and there is a HTML definition being used and that definition goes through parsexmlstring function.
    For example In the cust_title field on a page the user entered " A & B"
    I went to the HTML definition and wrapped cust_title field in the CDATA tags like <![CDATA[<Title>%BIND(:8)</Title>]]>
    Now , there is no error, XML is getting published. But in the xml message
    I see Cdata tags and string is appearing exactly as it was entered.....
    But how can I get rid of the Cdata tags from the XML message?

    Dear Odie,
    May I make your example a bit more complicated by adding an additional complexType, please:
    ---Original ----
    <DEPT>
    <EMPID>1</EMPID>
    <EMPNAME>Martin Chadderton</EMPNAME>
    <SALARY>??</SALARY>
    <SALARYq></SALARYq>
    </DEPT>
    ----- New ----
    <DEPT>
    <EMPID>1</EMPID>
    <EMPNAME>Martin Chadderton</EMPNAME>
    <SALARY>??</SALARY>
    <SALARYq></SALARYq>
    <EMPLMNT_HISTORY>
    <DEVISION>1</DEVISION>
    <FROM_DATE>2011-01-01 </FROM_DATE>
    <TO_DATE></TO_DATE>
    </EMPLMNT_HISTORY>
    </DEPT>
    Your solution works perfectly for <SALARY>, but how would you suggest also to deal with <TO_DATE> ?
    Massive thanks for your help!
    N.B. Just to emphasise, in my case I have 3 levels (complexType > complexType > complexType) and many elements and I would like to know if there is any generic option to say
    to remove all the empty elements from the result, as it causes to the SSJ (Systinet) Webservice to crash.

  • ADF CoreTree API is missing the ability to expand collapse from Java code?

    ADF-faces-10_1_3_0_4 CoreTree API:
    How do I expand and collapse a tree from Java code?
    Thanks,
    --Todd                                                                                                                                                                                                                                   

    You can use the search on the read only (normal mode) of the PL/SQL Editor. Either through menu or using ctrl F.
    The other is still an enhancement and is being tracked.
    Sue.

  • Unbalanced Body Tag Error...I'm a Newbie...please help!

    Hey guys,
    I'm sure this question has been answered a thousand and one times but I am trying to make a template of a website but I am getting the following error message: "There is an Error at line 18 of ****: Unbalanced Body Tag"  I have tried to past all of the html below.  I don't know much of anything about html but I'm trying to learn.  Any help at all would be amazing.  Thanks in advance everyone!
    <style type="text/css">
    <!--
    body {
        background-color: #FFF;
    body,td,th {
        font-family: Times New Roman, Times, serif;
        font-size: 12pt;
        color: #000;
    h1 {
        font-size: 24pt;
    -->
    </style>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <body bgcolor="#FFFFFF"><table width="924" border="0" cellspacing="0" cellpadding="0">
      <caption> 
      </caption>
      <tr>
        <td><img src="../Banner/Damon Duncan's Banner.jpg" width="924" height="200" alt="Damon Duncan's Banner" /></td>
      </tr>
    </table>
    <table width="924" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td align="center" valign="middle"><img src="../Banner/Buttons/Top-Navigation-Bar.jpg" width="924" height="35" alt="Banner Buttons" /></td>
      </tr>
    </table>
    <table width="924" border="0" cellspacing="0" cellpadding="10">
      <tr>
        <td width="2" rowspan="3" bgcolor="#000000"> </td>
        <td width="710" align="center" valign="middle"><h1><!-- TemplateBeginEditable name="Title" --><strong>Welcome to the Website of Damon Duncan</strong><!-- TemplateEndEditable --></h1></td>
        <td width="152" rowspan="2" bgcolor="#000000"><!-- TemplateBeginEditable name="Sub Menu" -->Sub Menu<!-- TemplateEndEditable --></td>
      </tr>
      <tr>
        <td rowspan="2" align="left" valign="top"><!-- TemplateBeginEditable name="Content" -->
          <p>Hello, my name is Damon Duncan <img src="../Pictures/Damon-and-Melissa-Duncan.jpg" alt="Damon and Melissa Duncan" width="289" height="127" hspace="5" vspace="5" border="0" align="right" />and this is my personal website.  Throughout his website you will get a glimpse into the things that are most important in my life.  That list starts with my family, especially my wife Melissa Duncan.  Currently I am a third year law student at Elon University School of Law.  Melissa is also a member of the charter class at the law school. </p>
          <p>After completing law school Melissa and I will open Duncan Law in Greensboro, North Carolina. Duncan Law will be a satellite office of my father's law office in Charlotte, North Carolina. Although this site will obviously be limited in the details of my life I can assure you one thing - I am blessed.  I have a great family, great friends and truly enjoy every day of life.  That is the only way to live right?  Enjoy the website and don't hesitate to contact me if you need to.</p>
        <!-- TemplateEndEditable --></td>
      </tr>
      <tr>
        <td width="152" align="right" valign="top" bgcolor="#000000"><p><img src="../Logos/Follow-Me.jpg" width="150" height="60" alt="Follow Me Here:" /></p>
          <p><img src="../Logos/Facebook-Logo-Button.jpg" width="150" height="56" alt="Facebook Logo Button" /><br>     
            <img src="../Logos/LinkedIn-Logo.png" width="150" height="53" alt="LinkedIn Logo Button" /><br>   
            <br>   
            <img src="../Logos/Twitter-Logo-Button.jpg" width="150" height="41" alt="Twitter Logo Button" /><br>
            <br>   
        <img src="../Logos/YouTube-Logo-Button.jpg" width="150" height="56" alt="YouTube Logo Button" /></p></td>
      </tr>
      <tr>
        <td bgcolor="#000000"> </td>
        <td align="center" valign="baseline">Home || About Me || My Blog || Favorite Sites || Contact Me<br />
          <br />
    Copyright by Damon Duncan, All Rights Reserved</td>
        <td bgcolor="#000000"> </td>
      </tr>
    </table>

    Disclaimer: I don't use Templates - you probably need to make these changes to your template file. Maybe some template experts will correct me, but here's my $.02.
    Then again
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    both look like they're out of place to me.
    Anyway:
    If that really is all of the code from your page, then you're missing at least the following:
    DOCTYPE
    <html>
    <head>
    <title>Your Title Goes Here</title>
    </head>
    </body>
    </html>
    Add the DOCTYPE by selecting File->Convert->HTML 4.01 Strict (Dreamweaver->Convert->... if on a Mac) from the menus.
    In Code View, just underneath the newly added DOCTYPE code, add:
    <html>
    <head>
    <title>Whatever you want</title>
    Now, just above your <body> tag, add:
    </head>
    And at the very bottom of the page, add:
    </body>
    </html>
    Sidenote: Since you're already defining the body's background color with CSS, you can change this:
    <body bgcolor="#FFFFFF">
    to this:
    <body>
    Mark "Cheers" Boyd
    Keep-On-Learnin' :-)

  • Unbalanced body tag error

    I am trying to save a html document as a template but am receiving an unbalanced body tag message.
    I appear to have both an opening <body> and closing </body> tag and no further body tags.
    Could you please help?
    The code is below:
    <!DOCTYPE HTML>
    <html>
    <head>
    <link href="css/styles.css" rel="stylesheet" type="text/css" media="screen">
        <link href="css/print.css" rel="stylesheet" type="text/css" media="print>
        <title>Poetrynews.co.uk</title>
    </head>
    <body>
    <div id="outer-wrapper">
    <div id="central-container">
      <div id="logo"> <a href="index.html"><img src="images/furniture/poetry_news_logo.jpg" /></a>
        </div>
            <div id="social-media">
             <ul>
                 <li> <a href="http://www.facebook.com"><img src="images/icons/facebook-logo40.jpg" /></a></li>
                    <li> <a href="#"><img src="images/icons/rss_logo40.jpg" /></a></li>
                    <li> <a href="http://www.twitter.com"><img src="images/icons/Twitter_logo640.jpg" /></a></li>
                    <li> <a href="http://www.youtube.com"><img src="images/icons/youtube-logo40.jpg" /></a></li>
                </ul>
        </div>
       <div id="top-nav">
             <ul>
                 <li><a href="index.html">Home</a></li>
                 <li><a href="news.html">News</a></li>
                    <li><a href="interviews.html">Interviews</a></li>
                    <li><a href="features.html">Features</a></li>
                    <li><a href="reviews.html">Reviews</a></li>
                    <li><a href="videos-pictures.html">Videos/Pictures</a></li>
                    <li><a href="competitions.html">Competitions</a></li>
                    <li><a href="contact.html">Contact us</a></li>
                </ul>
        </div>
        <div id="main-content-home-box">
             <div id="top-story-home">
                 <h1>Seamus Heaney at Hay Festival</h1>
                    <img src="images/article_images/657seamus_heaney_test.jpg" width="658" height="380" alt="Seamus Heaney">
                  <p>Irish poet to speak about his poetry, life and lots of other jolly interesting things at Hay on Wye. Read more about this make believe stuff. </p>
            </div>
         <div id="latest-news-home">
             <h2><a href="news.html">Latest News</a></h2>
             <ul>
                 <li>
                   <h3>Government cuts are 'hitting poetry' say critics</h3></li>
                    <li>
                      <p>Calls for literature to be taken seriously.</p></li>
                    <li>
                      <h3>Caernarfon to hold three-day poetry festival</h3></li>
                    <li>
                      <p>Irish master just one of many to hit Wales.</p></li>
                    <li>
                      <h3>Review: Kathleen Jamie explores nature's spirit</h3></li>
                    <li>
                      <p>Another worthwhile journey into the wilderness.</p></li>
                    <li>
                      <h3>Picador signs up 15-year-old prodigy</h3></li>
                    <li>
                      <p>Cornish poet said to have a 'voice like thunder.'</p></li>
                    <li>
                      <h3>Picador signs up 15-year-old prodigy</h3></li>
                    <li>
                      <p>Cornish poet said to have a 'voice like thunder.'</p></li>
                </ul>
      </div>
        </div>
        <div id="second-level-content-box">
        <div id="story-two-home">
            <h3>Benjamin launches latest volume</h3>
            <img src="images/article_images/benjamin_zephaniah_test430.jpg" width="430" height="200" alt="Benjamin Zephaniah">
            <p>Rasta poet is delighted to be able to explore new ground.</p>
       </div>
       <div id="story-three-home">
             <h3>Review: The latest Carol Ann Duffy</h3>
          <img src="images/article_images/carol_ann_duffy_test430.jpg" width="430" height="200" alt="Carol Ann Duffy">
       <p>Another  triumph from the pen of the British poet laureate.</p>
          </div>
        </div>
      <div id="main-video-content-box">
            <div id="latest-video-home">
                    <h2><a href="news.html">Latest videos</a></h2>
                        <ul>
                        <li>
                          <h3>Government cuts are 'hitting poetry' say critics</h3></li>
                        <li>
                          <p>Calls for literature to be taken seriously.</p></li>
                        <li>
                          <h3>Caernarfon to hold three-day poetry festival</h3></li>
                        <li>
                          <p>Irish master just one of many to hit Wales.</p></li>
                        <li>
                          <h3>Review: Kathleen Jamie explores nature's spirit</h3></li>
                        <li>
                          <p>Another worthwhile journey into the wilderness.</p></li>
                        <li>
                          <h3>Picador signs up 15-year-old prodigy</h3></li>
                        <li>
                          <p>Cornish poet said to have a 'voice like thunder.'</p></li>
                        <li>
                          <h3>Picador signs up 15-year-old prodigy</h3></li>
                        <li>
                          <p>Cornish poet said to have a 'voice like thunder.'</p></li>
                        </ul>
             </div>
             <div id="main-video-home">
                <h1>Video interview: Jo Shapcott</h1>
                <img src="images/article_images/jo_shapscott_test657.jpg" width="658" height="380" alt="Jo Shapcott">
                <p>See our exclusive interview with Jo Shapcott. The poet discusses her own body of work and the creations of he contemporaries she  admires.</p>
             </div>
        </div>
       <div id="amazon-widget">
        </div>
       <div id="button-one-home">
        </div>
       <div id="button-two-home">
        </div>
       <div id="button-three-home">
        </div>
       <div id="button-four-home">
        </div>
       <div id="button-five-home">
        </div>
       <div id="button-six-home">
        </div>
       <div id="google-widget">
        </div>
        <div id="bottom-nav-puff-1">
             <h3>Poetry events</h3>
            <img src="images/furniture/hay215.jpg" width="216" height="100" alt="Hay Festival">
          <p>News from festivals and other events.</p>
            </div>
        <div id="bottom-nav-puff-2">
             <h3>Poetry prizes</h3>
            <img src="images/furniture/prize215.jpg" width="216" height="100" alt="Lecture hall">
          <p>The latest from all the top prizes.</p>
            </div>
        <div id="bottom-nav-puff-3">
             <h3>Where you live</h3>
            <img src="images/furniture/map215.jpg" width="216" height="100" alt="Map of British Isles">
          <p>News from around the UK and Ireland.</p>
            </div>
        <div id="bottom-nav-puff-4">
             <h3>Poem of the day</h3>
            <img src="images/furniture/poem215.jpg" width="216" height="100" alt="Manuscript">
          <p>A new clasic poem to read every day.</p>
            </div>
         <div id="bottom-nav">
             <ul>
                 <li><a href="index.html">Home</a></li>
                 <li><a href="news.html">News</a></li>
                    <li><a href="interviews.html">Interviews</a></li>
                    <li><a href="features.html">Features</a></li>
                    <li><a href="reviews.html">Reviews</a></li>
                    <li><a href="videos-pictures.html">Videos/Pictures</a></li>
                    <li><a href="profiles.html">Profiles</a></li>
                    <li><a href="competitions.html">Competitions</a></li>
                    <li><a href="blogs.html">Blogs</a></li>
                    <li><a href="complaints.html">Complaints</a></li>
                    <li><a href="advertise.html">Advertise with us</a></li>
                    <li><a href="contact.html">Contact us</a></li>
                </ul>
          </div>
      <div id="footer">
            <p>@2011 PT Scott Media. All rights reserved.  Dolwyn, Glynafon Terrace, Waunfawr, Gwynedd, UK, LL55 4YY.
       </div>
    </div>
        </div>
    </body>
    </html>

    Change this -
        <link href="css/print.css" rel="stylesheet" type="text/css" media="print>
    to this -
        <link href="css/print.css" rel="stylesheet" type="text/css" media="print">
    (note the last double quote)

  • ACE-4710 : XML Syntax Error du to a missing closing tag

    Hi,
    We use XML over HTTPS to gather connections information from a management station. We can successfully read the number of connections per real server (rserver), but the ACE returns a buggy XML code when we tray to get the number of connections through the VIP (by asking the service-policy). The problem is a missing closing tag in the returned code. The missing tag is </sp_class_map>.
    We have the latest ACE software version A3(2.2) installed. Note that the same request on a ACE Service Module does not presents this bug. I took a look in the bug toolkit but did not found the exact match.
    Does somebody already had this problem ? it is anoying as we cannot represent the number of connections for a specific vip in the NMS.
    I attach the returned XML code, in which I highligted the tad that does not have its closing counterpart.
    Thank you for any info before I open a TAC case
    Yves

    Thank you Gilles,
    It seams that this bug is only visible inernally : "Information contained within bug ID CSCsz52234 is only available to Cisco employees".
    I saved the bug to be informed on its status. Do you thing I should open a TAC case anyway ?
    Yves

Maybe you are looking for

  • Flash player update not working on MAC 10.6.8

    New Adobe Flash loads correctly, says it worked but I can't find the flash player and I keep getting the message that I need to load the udpated player in Safari.  I uninstalled the old flash player, restarted the computer and downloaded several time

  • New iMac Frequent Freezes

    Please Help: I have a 6 week old new Intel Duo iMac and been getting frequent freezes that require hard restarts. It started when I tried to print a document into a PDF file. Then after 2 hard restarts I could not log IN into my account. AppleCare re

  • I have Firefox 5, but need to downgrade to 3.5 or 3.6, how do I do this?

    I have Firefox 5, but need to downgrade to 3.5 or 3.6, how do I do this? Can you help me please? It is important to finish something I am working on.

  • PDFBox ... Java heap space problem !!

    Hello, I'm using PDFBox trying to read (2) pdf files in it, but both are big in size(About 17 MB) each. Here is an example for what i want to do : public void loadPdfs() {    String pdf1FilePath = "c:\\java long pdf1.pdf";    String pdf2FilePath = "c

  • [SOLVED] Local Hosting Using a Dynamic DNS

    I've been trying to self host a domain to use owncloud with, through www.mydomainname/owncloud.com or something similar. I've gotten a LAMP set up with a virtual host, have signed up with https://freedns.afraid.org/, set the afraid nameservers, set m