Edit bar isn't visible.

Permalink
Hi everybody,
I made a theme and i am testing it now but in the homepage template i don't see the bar on the top where you can edit the page.
This is the php:
<?php defined('C5_EXECUTE') or die(_("Access Denied.")) ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="<?php echo $this->getThemePath()?>/css/normal.css" />
<script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/scripts.js"></script>
<?php Loader::element('header_required'); ?>
</head>
<body>
<div><img id="bg_image" src="<?php echo $this->getThemePath()?>/img/greenfield.jpg" alt="" title="" /></div>
<div id="page">
<div id="top">
   <div id="topper">

I don't know what's wrong.
I put
<?php Loader::element('header_required'); ?>
on the top.
If anyone can help me.
Please.

 
jbx replied on at Permalink Reply
jbx
Have you actually signed in?
Also, I notice you're including jQuery in your header. C5 already does that, so that will break things...

Jon
WantSomeCookies replied on at Permalink Reply
Yes i signed in.
I included these JS for some slide i need.
Shell i post these JS files???
TheRealSean replied on at Permalink Best Answer Reply
TheRealSean
I have a feeling its that conflicting jquery call thats doing it try loading you scripts call below your header_required and remove the jquery call (I think its still loaded as part of the core)

<?php /* Remove This <script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/jquery.js"></script> */ ?> 
<?php Loader::element('header_required'); ?>
<script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/scripts.js"></script>
WantSomeCookies replied on at Permalink Reply
Oke i wil try this.
WantSomeCookies replied on at Permalink Reply
I deleted the JS scripts and everything worked well.
I found a easyeer way to use a slide show.
Use the dafoult one. As an block.
Have a nice day.
(sorry for my bad english i am from holland)