I discovered that either this...
PHP Code:
<dt>Location:</dt>
<dd>"
. (!empty($location) ? str2htmlentities($location) : '<br />') .
"</dd>
or this...
PHP Code:
<dt>Location:</dt>
<dd>"
. (!empty($location) ? str2htmlentities($location) : ' ') .
"</dd>
...seems to solve the problem.
(For all you non-PHP'ers out there, that code either inserts a <br /> or a if there was no Location: found in the database.)
I am still curious if there is a way to handle this with CSS, though.
Anyone?
Thanks,
Debbie
Bookmarks