problems converting static html in C5

Permalink
i've watched te following video:http://www.concrete5.org/documentation/how-tos/designers/make-a-theme/

but when i get to the part where i replace the title tag with this "<?php
Loader::element('header_required');
?>"

the edit menu bar doesnt appear and i just get a blank white box where it should be.

Can anybody tell me what i'm doing wrong?

Thanks,

 
gariah replied on at Permalink Reply
this is the code that i have for the header tag
<link rel="stylesheet" href="<?=$this->getThemePath()?>/css/default.css">
    <?php Loader::element('header_required'); ?>
    <script src="<?=$this->getThemePath()?>/js/libs/modernizr-1.7.min.js"></script>
    <script src="<?=$this->getThemePath()?>/js/cufon-yui.js" type="text/javascript"></script>
      <script src="<?=$this->getThemePath()?>/js/Museo_Slab_500.font.js" type="text/javascript"></script>
      <script type="text/javascript">
         Cufon.replace('h1',{ textShadow: '1px 1px #fff'});
         Cufon.replace('h2',{ textShadow: '1px 1px #fff'});
         Cufon.replace('h3',{ textShadow: '1px 1px #777'});
         Cufon.replace('nav',{ textShadow: '1px 1px #FFF'});
         Cufon.replace('h6',{ textShadow: '1px 1px #777'});
      </script>
        <script type="text/javascript" src="<?=$this->getThemePath()?>/js/twitter.js"></script>
        <script type="text/javascript" src="<?=$this->getThemePath()?>/js/custom.js"></script>
</head>


and i've also got this at the bottom of the body tag which seems to prevent it.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
   <script>!window.jQuery && document.write(unescape('%3Cscript src="<?=$this->getThemePath()?>/js/libs/jquery-1.5.1.min.js"%3E%3C/script%3E'))</script>
   <script src="<?=$this->getThemePath()?>/js/script.js"></script>
   <!--[if lt IE 7 ]>
   <script src="<?=$this->getThemePath()?>/js/libs/dd_belatedpng.js"></script>
   <script> DD_belatedPNG.fix('img, .png_bg');</script>
   <![endif]-->


Help!
TheRealSean replied on at Permalink Reply
TheRealSean
It looks like a conflicting issue with the Second Jquery you are loading in your footer, remove that and try again.

Concrete loads Jquery in the core