This sounds like a CSS styling issue, which has nothing to do with Drupal.<br><br>The <font> tag is depreciated - you should stick with <span style=""> or <span class="important-form-text"> or similar.<br>
<br>As to the actual problem, it will probably be a float: left/right, display:block, or similar problem - I'd use Firebug to quickly find it<br><br><div class="gmail_quote">On 26 April 2011 20:32, Carl Jester <span dir="ltr"><<a href="mailto:cjester@peladon.com">cjester@peladon.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I feel like I'm overlooking something simple. I'm writing a module that provides a form, I need to display some info along with the form, and sometimes I want to make a bit of that info really stand out.<br>
<br>
$foo = $info1 . ' ' $info2 . ' ' . $info3;<br>
$form(['foo']=array(<br>
'#value' => $foo,<br>
);<br>
<br>
Gives me:<br>
info1 info2 info3<br>
<br>
OK, so far so good.<br>
<br>
Now if I set up $foo like this:<br>
if ($info3 == $X) {<br>
$foo = $info1 . ' ' $info2 . ' <font color:red>' . $info3 .'</font>';<br>
} else {<br>
$foo = $info1 . ' ' $info2 . ' ' . $info3<br>
}<br>
<br>
Then when foo == x I get:<br>
info3<br>
info1 info2<br>
<br>
Info3 is indeed red, but on the previous line. I've also tried inline style with <span style:...> and gotten the same result.<br>
<br>
I just need to make info3 stand out in certain cases. What am I missing here?<br>
<br>
Thanks,<br>
<font color="#888888">Carl</font></blockquote></div><br>