Dashboard
Permalink
Hi
I'm converting a website design created in Dreamweaver into a C5 theme.
I have a home.php page and default.php.
The menu is not a C5 menu and is part of the css and uses js.
Everything seems to work after installing the theme except for the header/dashboard!
When I sign in I get the home page and a blank top margin where the dashboard ought to be.
Here is the top of my home.php
Any idea what I am doing wrong?
Thanks in anticipation
Vern
I'm converting a website design created in Dreamweaver into a C5 theme.
I have a home.php page and default.php.
The menu is not a C5 menu and is part of the css and uses js.
Everything seems to work after installing the theme except for the header/dashboard!
When I sign in I get the home page and a blank top margin where the dashboard ought to be.
Here is the top of my home.php
<?php defined('C5_EXECUTE') or die("Access Denied.");?> <!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" /> <style type="text/css" media="screen">@import "<?php echo $this->getStyleSheet('main.css')?>";</style> <style type="text/css" media="screen">@import "<?php echo $this->getStyleSheet('typography.css')?>";</style> <link href="<?php echo $this->getThemePath()?>/abbotswood_css.css" rel="stylesheet" type="text/css" media="screen" /> <?php Loader::element('header_required'); ?> <script src="<?php echo $this->getThemePath()?>/js/jquery.js" type="text/javascript" ></script> <script src="<?php echo $this->getThemePath()?>/js/menu.js" type="text/javascript" ></script> </head> <body>
Any idea what I am doing wrong?
Thanks in anticipation
Vern