I have recently re-installed my site http://amadain.net and am just trying to clear up a few issues.
The first on involves the Help text.
SpreadFirefox displays a nice little Help: before each and every help text that discribes a page. This works if there are no tags in the help text. The system.module - by default - surrounds the help text by tags...
Two changes need to be made
1. page.tpl.php, update
<?php if ($help != ""): ?>
<p id="help"><?php print $help ?></p>
<?php endif; ?>
to
<?php if ($help != ""): ?>
<div id="help"><?php print $help ?></div>
<?php endif; ?>
2. style.css, add
#help p {
display: inline; /* allow the text to float (1st paragraph) */
}
#help p + * {
display: inherit; /* stop the text floating (2nd and subsequent paragraphs) */
padding-top: 1em; /* put the blank line back after the 1st paragraph */
}
#help p + div.more-help-link {
padding-top: 0; /* remove the blank line from above the more link */
}
This works for me in Firefox and Safari.


