<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-15"
http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Roy Smith ha scritto:
<blockquote cite="mid:B4E84FD6-05BA-4C58-A335-6E997D167FA5@panix.com"
type="cite">
<div>Details:</div>
<div><br class="webkit-block-placeholder">
</div>
<div>Drupal 5.7</div>
<div>Theme: sky</div>
<div>URL: <a moz-do-not-send="true" href="http://hyc.org">http://hyc.org</a>/</div>
<div><br class="webkit-block-placeholder">
</div>
<div>All pages other than the home page have a line of text above the
banner with the page title. The home page has the banner smashed right
up against the top of the browser window with no white space above it.
How do I get the home page to have the same space above the banner as
all the other pages?</div>
<div>
<p
style="margin: 0px; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: normal; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><br>
</p>
<p style="margin: 0px;"><font
style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: normal; font-size-adjust: none; font-stretch: normal;"
face="Helvetica" size="3">--</font></p>
<p style="margin: 0px;"><font
style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: normal; font-size-adjust: none; font-stretch: normal;"
face="Helvetica" size="3"><a moz-do-not-send="true"
href="mailto:roy@panix.com">roy@panix.com</a></font></p>
</div>
<br>
</blockquote>
You can use $is_front to see if your are viewing the "front page" of
the site. <br>
<br>
open template.php (in your sites directory) and write:<br>
<br>
function _phptemplate_variables($hook, $vars = array()) {<br>
switch($hook) {<br>
case 'page':<br>
if ($is_front) $vars['title'] = 'Home';<br>
break;<br>
}<br>
return $vars;<br>
}<br>
<br>
<br>
(code writes with memory and not tested).<br>
<br>
M.<br>
<pre class="moz-signature" cols="72">--
Michel 'ZioBudda' Morelli <a class="moz-txt-link-abbreviated" href="mailto:michel@ziobudda.net">michel@ziobudda.net</a>
Consulenza sistemistica in ambito OpenSource.
Sviluppo applicazioni web dinamiche (LAMP+Ajax)
Telefono: 0200619074
Telefono Cell: +39-3939890025 -- Fax: +39-0291390660
<a class="moz-txt-link-freetext" href="http://www.ziobudda.net">http://www.ziobudda.net</a> ICQ: 58351764
<a class="moz-txt-link-freetext" href="http://www.ziobuddalabs.it">http://www.ziobuddalabs.it</a> Skype: zio_budda
<a class="moz-txt-link-freetext" href="http://www.ajaxblog.it">http://www.ajaxblog.it</a>                         MSN: <a class="moz-txt-link-abbreviated" href="mailto:michel@ziobuddalabs.it">michel@ziobuddalabs.it</a>
                                                JABBER: <a class="moz-txt-link-abbreviated" href="mailto:michel@gmail.com">michel@gmail.com</a>
</pre>
</body>
</html>