<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    I haven't been following this discussion, so sorry if this isn't
    what you were asking, but this is what I do in ALL my themes to make
    the wp-caption div the same width as the img:<br>
    <br>
    <pre><tt>function theme_prefix_wpcaption($x=null, $attr, $content)</tt></pre>
    <pre><tt>{&nbsp;&nbsp;&nbsp; </tt></pre>
    <pre><tt>&nbsp;&nbsp;&nbsp; extract(shortcode_atts( array( 'id' =&gt; '', 'align' =&gt; 'alignnone', 'width' =&gt; '', 'caption' =&gt; '' ), $attr));</tt></pre>
    <pre><tt>&nbsp;&nbsp;&nbsp; if ( 0 &gt;= (int) $width || empty($caption) ) {</tt></pre>
    <pre><tt>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $content;</tt></pre>
    <pre><tt>&nbsp;&nbsp;&nbsp; }</tt></pre>
    <pre><tt>&nbsp;&nbsp;&nbsp; $id = $id ? 'id="' . $id . '" ' : '';</tt></pre>
    <pre><tt>&nbsp;&nbsp;&nbsp; return '&lt;div ' . $id . 'class="wp-caption ' . $align . '" style="width: ' . $width . 'px"&gt;' . $content . '&lt;div class="wp-caption-wrapper"&gt;&lt;p class="wp-caption-text"&gt;' . $caption . '&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;';</tt></pre>
    <pre><tt>}</tt></pre>
    <pre><tt>add_filter('img_caption_shortcode', '</tt><tt><tt>theme_prefix_</tt></tt><tt>wpcaption', 10, 3);</tt></pre>
    <br>
    <br>
    On 4/21/11 10:16 AM, Towfiq I. wrote:<br>
    <span style="white-space: pre;">&gt; @emil<br>
      &gt; <br>
      &gt; But the twenty-ten theme is rendering the same thing. The
      caption<br>
      &gt; width is automatically added by wordpress and I am not able
      to<br>
      &gt; override the default width. :/<br>
      &gt; <br>
      &gt; Any suggestion?<br>
      &gt; <br>
      &gt; <br>
      &gt; -- Towfiq I.<br>
      &gt; <br>
      &gt; <br>
      &gt; <br>
      &gt; _______________________________________________
      theme-reviewers<br>
      &gt; mailing list <a class="moz-txt-link-abbreviated" href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a> <br>
      &gt; <a class="moz-txt-link-freetext" href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a></span><br>
  </body>
</html>