Chris wrote:/templates/default/header.tpl
/templates/default/footer.tpl
Since it's mixed with php I'm confused!
This is a footer.tpl content:
<!-- Footer Starts -->
<div id="footer">
<!--<span><?php //echo $this->site->disclaimer; ?></span>-->
<p class="floatleft"><?php $this->footer_link = footer(); ?></p>
<p class="floatright">© 2010 <?php echo $this->site->name; ?></p>
</div>
<center><span style="font-size: 80%;"><?php echo $this->site->disclaimer; ?></span></center>
<!-- Footer Ends -->
</div>
<!-- Wrapper Ends -->
</body>
</html>
This is a header.tpl content:
<!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" dir="ltr" lang="<?php eprint(Lang); ?>" xml:lang="<?php eprint(Lang); ?>">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<!--<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />-->
<title><?php echo $this->header->title;?></title>
<meta name="description" content="<?php echo $this->header->description;?>" />
<meta name="keywords" content="<?php echo $this->header->keywords;?>" />
<base href="<?php echo $this->site->url; ?>" />
<link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template; ?>/css/stylesheet.css" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template; ?>/css/stylesheet/ie6.css" />
<![endif]-->
<script type="text/javascript" src="includes/js/prototype.js"></script>
<script type="text/javascript" src="templates/<?php echo $this->template; ?>/script/carousel.js"></script>
<script type="text/javascript" src="includes/js/ans_ajax.js"></script>
<script type="text/javascript" src="includes/js/AutoComplete.js"></script>
<script type="text/javascript" src="includes/js/FancyZoom.js"></script>
<script type="text/javascript" src="includes/js/FancyZoomHTML.js"></script>
</head> ..........................................................................................
Should I change this lines:
<!--<span><?php //echo $this->site->disclaimer; ?></span>-->
<p class="floatleft"><?php $this->footer_link = footer(); ?></p>
<p class="floatright">© 2010 <?php echo $this->site->name; ?></p>
</div>
<center><span style="font-size: 80%;"><?php echo $this->site->disclaimer; ?></span></center>
and
<title><?php echo $this->header->title;?></title> ?
Right?