This sounds like a CSS styling issue, which has nothing to do with Drupal.<br><br>The &lt;font&gt; tag is depreciated - you should stick with &lt;span style=&quot;&quot;&gt; or &lt;span class=&quot;important-form-text&quot;&gt; or similar.<br>
<br>As to the actual problem, it will probably be a float: left/right, display:block, or similar problem - I&#39;d use Firebug to quickly find it<br><br><div class="gmail_quote">On 26 April 2011 20:32, Carl Jester <span dir="ltr">&lt;<a href="mailto:cjester@peladon.com">cjester@peladon.com</a>&gt;</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&#39;m overlooking something simple. I&#39;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 . &#39; &#39; $info2 . &#39; &#39; . $info3;<br>
$form([&#39;foo&#39;]=array(<br>
        &#39;#value&#39; =&gt; $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 . &#39; &#39; $info2 . &#39;  &lt;font color:red&gt;&#39; . $info3 .&#39;&lt;/font&gt;&#39;;<br>
} else {<br>
     $foo = $info1 . &#39; &#39; $info2 . &#39; &#39; . $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&#39;ve also tried inline style with &lt;span style:...&gt; 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>