<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Removing Width/Height from the Image Uploader</title>
	<atom:link href="http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<pubDate>Tue, 02 Dec 2008 15:39:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Die Linkschleuder &#187; Peruns Weblog</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1229789</link>
		<dc:creator>Die Linkschleuder &#187; Peruns Weblog</dc:creator>
		<pubDate>Fri, 13 Jun 2008 00:22:34 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1229789</guid>
		<description>[...] Removing Width/Height from the Image Uploader - In diesem Beitrag wird beschrieben wie man die automatische Angabe zur Breite und H?he bei dem Bild-Upload in WordPress entfernen kann. [...]</description>
		<content:encoded><![CDATA[<p>[...] Removing Width/Height from the Image Uploader - In diesem Beitrag wird beschrieben wie man die automatische Angabe zur Breite und H?he bei dem Bild-Upload in WordPress entfernen kann. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ChrisR</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1229051</link>
		<dc:creator>ChrisR</dc:creator>
		<pubDate>Thu, 05 Jun 2008 15:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1229051</guid>
		<description>I am new to WP but just spent 2 weeks learning PHP in prep (related to my job)--while I have no problem with adding the width and height info, what I don't get is why WP 2.5 actually changes the name of the image to tack on the dimensions. And if I change the dimensions of the image and replace the image in Uploads, WP doesn't seem to recognize the new dimensions. Am I missing something?</description>
		<content:encoded><![CDATA[<p>I am new to WP but just spent 2 weeks learning PHP in prep (related to my job)&#8211;while I have no problem with adding the width and height info, what I don&#8217;t get is why WP 2.5 actually changes the name of the image to tack on the dimensions. And if I change the dimensions of the image and replace the image in Uploads, WP doesn&#8217;t seem to recognize the new dimensions. Am I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PRand</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228869</link>
		<dc:creator>PRand</dc:creator>
		<pubDate>Tue, 03 Jun 2008 23:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228869</guid>
		<description>i usually size my image to the size i want prior to uploading (width critical) for all my blogs (each blog has it's own width critical specifications)

where i get into trouble is one theme that converts all main posts images into thumbnails once they move off the main post roster and go into sidebar posts with thumbnail images. if i leave the width/height declaration the thumbnails stay at the size as declared in the original upload. so i size my images for max width on my theme and remove width/height declaration.

it sounds like this theme could be coded to handle this issue from the discussion above</description>
		<content:encoded><![CDATA[<p>i usually size my image to the size i want prior to uploading (width critical) for all my blogs (each blog has it&#8217;s own width critical specifications)</p>
<p>where i get into trouble is one theme that converts all main posts images into thumbnails once they move off the main post roster and go into sidebar posts with thumbnail images. if i leave the width/height declaration the thumbnails stay at the size as declared in the original upload. so i size my images for max width on my theme and remove width/height declaration.</p>
<p>it sounds like this theme could be coded to handle this issue from the discussion above</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228856</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Tue, 03 Jun 2008 16:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228856</guid>
		<description>The reason that it is inserting "width=500" into your images is because your theme is not taking advantage of a new WordPress feature in 2.5.

WP 2.5 introduced the whole media uploader thing, and one of the features it offers themes is to tell WordPress exactly how wide the main "post content" area is. Then it will not allow images to be any wider than that, because wide images often screw up themes by pushing the sidebars way out there. What with the commonplace digital pictures being published by newbies who don't know how to resize properly, this is a good thing.

However, it does mean that your theme needs to tell WordPress how wide, maximum, images should be allowed to be (when inside a post). The theme can do this very easily. Just add this inside the theme's functions.php file:
$GLOBALS['content_width'] = 500;

Change the 500, obviously. 500 is the default value if this value is not specified by the theme itself.

See? No need to go to extreme measures. Just fix the theme to be 2.5 compatible.</description>
		<content:encoded><![CDATA[<p>The reason that it is inserting &#8220;width=500&#8243; into your images is because your theme is not taking advantage of a new WordPress feature in 2.5.</p>
<p>WP 2.5 introduced the whole media uploader thing, and one of the features it offers themes is to tell WordPress exactly how wide the main &#8220;post content&#8221; area is. Then it will not allow images to be any wider than that, because wide images often screw up themes by pushing the sidebars way out there. What with the commonplace digital pictures being published by newbies who don&#8217;t know how to resize properly, this is a good thing.</p>
<p>However, it does mean that your theme needs to tell WordPress how wide, maximum, images should be allowed to be (when inside a post). The theme can do this very easily. Just add this inside the theme&#8217;s functions.php file:<br />
$GLOBALS['content_width'] = 500;</p>
<p>Change the 500, obviously. 500 is the default value if this value is not specified by the theme itself.</p>
<p>See? No need to go to extreme measures. Just fix the theme to be 2.5 compatible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228726</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Mon, 02 Jun 2008 12:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228726</guid>
		<description>I love that you guys have this to complain about. I love that you hate having to go in and manually remove or change width and height. It is simple html code... and it is not that hard to make changes to. I am 52 (today) and I can write code and there is no reason why you can't either. What I would love though is for someone to at least answer my questions from above. What I would love is to be able to complain about picture images, but I can't because the dang thing doesn't even work!!!!!!

Maybe I missed some secret protocol about not asking questions that are not pertinent to the article... or maybe I am just looking in the wrong place. When I did a search for my problem, it brought me here... so I apparently am the only person with WP that has this problem. 

OK, I got that off my chest. If anyone knows of a patch or simple fix, please let me know. Thanks.</description>
		<content:encoded><![CDATA[<p>I love that you guys have this to complain about. I love that you hate having to go in and manually remove or change width and height. It is simple html code&#8230; and it is not that hard to make changes to. I am 52 (today) and I can write code and there is no reason why you can&#8217;t either. What I would love though is for someone to at least answer my questions from above. What I would love is to be able to complain about picture images, but I can&#8217;t because the dang thing doesn&#8217;t even work!!!!!!</p>
<p>Maybe I missed some secret protocol about not asking questions that are not pertinent to the article&#8230; or maybe I am just looking in the wrong place. When I did a search for my problem, it brought me here&#8230; so I apparently am the only person with WP that has this problem. </p>
<p>OK, I got that off my chest. If anyone knows of a patch or simple fix, please let me know. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ia</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228712</link>
		<dc:creator>ia</dc:creator>
		<pubDate>Mon, 02 Jun 2008 05:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228712</guid>
		<description>Monika, I always choose full size, not medium, and it still ends up inserting &lt;code&gt;width="500"&lt;/code&gt;. I know that this can easily be fixed in several ways, but I just don't like this intrusiveness. And it's not a very desirable way of writing HTML.

MaestroGP,

&lt;blockquote&gt;
The "align", "border", "hspace", and "vspace" attributes of the image element were deprecated in HTML 4.01.

The "align", "border", "hspace", and "vspace" attributes of the image element are not supported in XHTML 1.0 Strict DTD.
&lt;/blockquote&gt;

from: http://www.w3schools.com/tags/tag_IMG.asp

It may be a bad practice for loading images more quickly, but it is a bad practice for web standards generally, and for resizing images through HTML specifically. 

I agree that you should never resize images with HTML, which is what WordPress is doing now...in my case, at least.</description>
		<content:encoded><![CDATA[<p>Monika, I always choose full size, not medium, and it still ends up inserting <code>width="500"</code>. I know that this can easily be fixed in several ways, but I just don&#8217;t like this intrusiveness. And it&#8217;s not a very desirable way of writing HTML.</p>
<p>MaestroGP,</p>
<blockquote><p>
The &#8220;align&#8221;, &#8220;border&#8221;, &#8220;hspace&#8221;, and &#8220;vspace&#8221; attributes of the image element were deprecated in HTML 4.01.</p>
<p>The &#8220;align&#8221;, &#8220;border&#8221;, &#8220;hspace&#8221;, and &#8220;vspace&#8221; attributes of the image element are not supported in XHTML 1.0 Strict DTD.
</p></blockquote>
<p>from: <a href="http://www.w3schools.com/tags/tag_IMG.asp">http://www.w3schools.com/tags/tag_IMG.asp</a></p>
<p>It may be a bad practice for loading images more quickly, but it is a bad practice for web standards generally, and for resizing images through HTML specifically. </p>
<p>I agree that you should never resize images with HTML, which is what WordPress is doing now&#8230;in my case, at least.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MaestroGP</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228560</link>
		<dc:creator>MaestroGP</dc:creator>
		<pubDate>Sat, 31 May 2008 14:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228560</guid>
		<description>Omitting height and width declarations in your img tags is poor form. There is never--&lt;i&gt;never&lt;/i&gt;--a reason to leave out the height width declarations. And &lt;i&gt;never&lt;/i&gt; resize an image using the height and width declarations. If you need to include an image in two different sizes within the same page or website, upload two different versions of the image and tag appropriately.

If you do either of these, it shows you care more about being lazy and making it easy for yourself than you do about your readers.</description>
		<content:encoded><![CDATA[<p>Omitting height and width declarations in your img tags is poor form. There is never&#8211;<i>never</i>&#8211;a reason to leave out the height width declarations. And <i>never</i> resize an image using the height and width declarations. If you need to include an image in two different sizes within the same page or website, upload two different versions of the image and tag appropriately.</p>
<p>If you do either of these, it shows you care more about being lazy and making it easy for yourself than you do about your readers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Weekly Episode 18 &#124; Jeffro2pt0</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228527</link>
		<dc:creator>WordPress Weekly Episode 18 &#124; Jeffro2pt0</dc:creator>
		<pubDate>Sat, 31 May 2008 05:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228527</guid>
		<description>[...] Removing Width/Height from the Image Uploader [...]</description>
		<content:encoded><![CDATA[<p>[...] Removing Width/Height from the Image Uploader [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raincoaster</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228513</link>
		<dc:creator>raincoaster</dc:creator>
		<pubDate>Sat, 31 May 2008 03:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228513</guid>
		<description>I sure wish this were doable in WP.com. I have Sandbox on one blog and Monotone on the other, so the arbitrary 400 pixel width for large size images is COMPLETELY irrelevant to me. I have to strip it out every single time.</description>
		<content:encoded><![CDATA[<p>I sure wish this were doable in WP.com. I have Sandbox on one blog and Monotone on the other, so the arbitrary 400 pixel width for large size images is COMPLETELY irrelevant to me. I have to strip it out every single time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Monika</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228434</link>
		<dc:creator>Monika</dc:creator>
		<pubDate>Fri, 30 May 2008 14:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228434</guid>
		<description>ia this is not  correct.
Administration Panel==&#62;miscellaneous==&#62;set the medium width to whatever  you would like to have and it works like a charm

and after a click to the full size image  I have images with 900px width.

kindly regards
Monika</description>
		<content:encoded><![CDATA[<p>ia this is not  correct.<br />
Administration Panel==&gt;miscellaneous==&gt;set the medium width to whatever  you would like to have and it works like a charm</p>
<p>and after a click to the full size image  I have images with 900px width.</p>
<p>kindly regards<br />
Monika</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ia</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228427</link>
		<dc:creator>ia</dc:creator>
		<pubDate>Fri, 30 May 2008 13:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228427</guid>
		<description>People are wondering why someone would want to remove IMG width and height attributes, and here's my answer: because it's a horrible way to resize images when they're not the same dimensions as the image itself. When I upload images into WP that are wider than 500px, the width attribute still says &lt;code&gt;width="500"&lt;/code&gt;. And I don't want that. WP should at least measure the exact size of the image before setting the IMG attributes.

As for image classes, I think the align classes are a good idea.</description>
		<content:encoded><![CDATA[<p>People are wondering why someone would want to remove IMG width and height attributes, and here&#8217;s my answer: because it&#8217;s a horrible way to resize images when they&#8217;re not the same dimensions as the image itself. When I upload images into WP that are wider than 500px, the width attribute still says <code>width="500"</code>. And I don&#8217;t want that. WP should at least measure the exact size of the image before setting the IMG attributes.</p>
<p>As for image classes, I think the align classes are a good idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billn</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228401</link>
		<dc:creator>billn</dc:creator>
		<pubDate>Fri, 30 May 2008 08:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228401</guid>
		<description>Or can you modify the 'black-box' to make the width what you want - eg instead of 500px for large, what about 565?
Cheers</description>
		<content:encoded><![CDATA[<p>Or can you modify the &#8216;black-box&#8217; to make the width what you want - eg instead of 500px for large, what about 565?<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald Huereca</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228387</link>
		<dc:creator>Ronald Huereca</dc:creator>
		<pubDate>Fri, 30 May 2008 06:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228387</guid>
		<description>For those wanting the ability to remove the class, I've put in a feature request in the WordPress trac.  Hopefully it'll make it in 2.5.2.

http://trac.wordpress.org/ticket/7065</description>
		<content:encoded><![CDATA[<p>For those wanting the ability to remove the class, I&#8217;ve put in a feature request in the WordPress trac.  Hopefully it&#8217;ll make it in 2.5.2.</p>
<p><a href="http://trac.wordpress.org/ticket/7065">http://trac.wordpress.org/ticket/7065</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trisha</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228337</link>
		<dc:creator>Trisha</dc:creator>
		<pubDate>Thu, 29 May 2008 23:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228337</guid>
		<description>Monika is right - not putting in the image width and height definitely slows down your page load - if you have multiple images on the page the load drag can be noticeable, but even a small increase in time it takes to load will cost you in terms of SEO - Google penalizes slow-loading pages, and also penalizes you for images that have no size declarations.  Not worth it to me to not just include them in the img tag.    Using CSS to control your image size is not the same thing at all.    And using a large file size with smaller CSS styling doesn't speed up page load time at all - the file's size in terms of bytes doesn't get reduced just because you "declare" it to be smaller using CSS.  

All that being said, quit criticizing the author - Ron is just answering a question, and gave a good solution to what she needed - even if what she needed was not a good practice.</description>
		<content:encoded><![CDATA[<p>Monika is right - not putting in the image width and height definitely slows down your page load - if you have multiple images on the page the load drag can be noticeable, but even a small increase in time it takes to load will cost you in terms of SEO - Google penalizes slow-loading pages, and also penalizes you for images that have no size declarations.  Not worth it to me to not just include them in the img tag.    Using CSS to control your image size is not the same thing at all.    And using a large file size with smaller CSS styling doesn&#8217;t speed up page load time at all - the file&#8217;s size in terms of bytes doesn&#8217;t get reduced just because you &#8220;declare&#8221; it to be smaller using CSS.  </p>
<p>All that being said, quit criticizing the author - Ron is just answering a question, and gave a good solution to what she needed - even if what she needed was not a good practice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Monika</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228330</link>
		<dc:creator>Monika</dc:creator>
		<pubDate>Thu, 29 May 2008 22:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228330</guid>
		<description>if an img tag has no width and height the browser has to read the header information from the image. sometimes this slow down your page or the browser has to correct the image size and this is absolut "unstylish" ;) 

maybe it is a better way if someone would like to change his theme, but for this "better way" you pay a good price: long load time and a bad screen layout while the browser is loading your page.

something I can't understand, but ok ;)


regards
Monika</description>
		<content:encoded><![CDATA[<p>if an img tag has no width and height the browser has to read the header information from the image. sometimes this slow down your page or the browser has to correct the image size and this is absolut &#8220;unstylish&#8221; <img src='http://weblogtoolscollection.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>maybe it is a better way if someone would like to change his theme, but for this &#8220;better way&#8221; you pay a good price: long load time and a bad screen layout while the browser is loading your page.</p>
<p>something I can&#8217;t understand, but ok <img src='http://weblogtoolscollection.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>regards<br />
Monika</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald Huereca</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228329</link>
		<dc:creator>Ronald Huereca</dc:creator>
		<pubDate>Thu, 29 May 2008 22:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228329</guid>
		<description>@Ajay,
Perhaps, but this post was a response to a reader question.  I'm indifferent whether it's left in or not.  Judging from some of the comments, it appears some people needed this.</description>
		<content:encoded><![CDATA[<p>@Ajay,<br />
Perhaps, but this post was a response to a reader question.  I&#8217;m indifferent whether it&#8217;s left in or not.  Judging from some of the comments, it appears some people needed this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scott</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228314</link>
		<dc:creator>scott</dc:creator>
		<pubDate>Thu, 29 May 2008 20:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228314</guid>
		<description>Thank you for this post! The new image uploader in WP 2.5.1 tends to incorrectly assign image dimensions when inserting a larger image at full size. This is a nice fix so my clients don't have to go into each image's properties after insertion to remove/correct the height and width. Thank you for sharing this!</description>
		<content:encoded><![CDATA[<p>Thank you for this post! The new image uploader in WP 2.5.1 tends to incorrectly assign image dimensions when inserting a larger image at full size. This is a nice fix so my clients don&#8217;t have to go into each image&#8217;s properties after insertion to remove/correct the height and width. Thank you for sharing this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Comme une image</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228311</link>
		<dc:creator>Comme une image</dc:creator>
		<pubDate>Thu, 29 May 2008 20:56:43 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228311</guid>
		<description>Well! I &lt;strong&gt;needed&lt;/strong&gt; this. Many thanks to make it so easy for me (I prefer the plugin way, that is theme-independant). I prefer to handle width and height via CSS, which is a better practice, especially if you plan to change your theme sooner or later.</description>
		<content:encoded><![CDATA[<p>Well! I <strong>needed</strong> this. Many thanks to make it so easy for me (I prefer the plugin way, that is theme-independant). I prefer to handle width and height via CSS, which is a better practice, especially if you plan to change your theme sooner or later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajay</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228298</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Thu, 29 May 2008 18:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228298</guid>
		<description>@Ronald, I agree with Julie above. It is a bad idea to knock off the width and height of an image. Keeping that in place ensure that the browser lays out the page properly.

Anyway, I use IImage Browser for inserting my images. I prefer that over the WordPress editor anyday.</description>
		<content:encoded><![CDATA[<p>@Ronald, I agree with Julie above. It is a bad idea to knock off the width and height of an image. Keeping that in place ensure that the browser lays out the page properly.</p>
<p>Anyway, I use IImage Browser for inserting my images. I prefer that over the WordPress editor anyday.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/#comment-1228292</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 29 May 2008 17:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3600#comment-1228292</guid>
		<description>I hacked this change in the wp-includes file the day I downloaded 2.5 - good to see there's a better way of doing it</description>
		<content:encoded><![CDATA[<p>I hacked this change in the wp-includes file the day I downloaded 2.5 - good to see there&#8217;s a better way of doing it</p>
]]></content:encoded>
	</item>
</channel>
</rss>
