<div class="gmail_quote">On Wed, Aug 10, 2011 at 11:11 AM, Chip Bennett <span dir="ltr">&lt;<a href="mailto:chip@chipbennett.net">chip@chipbennett.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div><span style="white-space: pre-wrap;">                </span>// Apply dynamic width to $content_width</div>
<div><span style="white-space: pre-wrap;">                </span>global $content_width;</div><div><span style="white-space: pre-wrap;">                </span>if ( ! isset( $content_width ) ) {</div><div><span style="white-space: pre-wrap;">                        </span>$content_width = $dynamic_width;</div>


<div><span style="white-space: pre-wrap;">                </span>}</div><div></div></blockquote></div><br>I know I&#39;m a little &quot;off&quot; today, but shouldn&#39;t you be testing if $dynamic_width is set versus the $content_width ... which you are setting with function&#39;s code above this test?<br>

<br>For example:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><span style="white-space: pre-wrap;">                </span>// Apply dynamic width to $content_width</div>

<div><span style="white-space: pre-wrap;">                </span>global $content_width;</div><div><span style="white-space: pre-wrap;">                </span>if ( isset( $dynamic_width ) ) {</div><div><span style="white-space: pre-wrap;">                        </span>$content_width = $dynamic_width;</div>


<div><span style="white-space: pre-wrap;">                </span>}</div></blockquote><br><br>Cais.<br>