<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How can I give these Wordpress images room to breathe?</title>
	<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe/</link>
	<description>Comments on Ask MetaFilter post How can I give these Wordpress images room to breathe?</description>
	<pubDate>Sun, 01 Jun 2008 21:41:02 -0800</pubDate>
	<lastBuildDate>Sun, 01 Jun 2008 21:41:02 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How can I give these Wordpress images room to breathe?</title>
		<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe</link>	
		<description>The images on the front page of my Wordpress blog are all squashed up against the text, while the single-post images are not. Why is this? 
 &lt;br /&gt;&lt;br /&gt; &lt;a href=&quot;http://www.jessicasuarez.com/&quot;&gt;Front page. &lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.jessicasuarez.com/2008/06/01/sex-and-the-city-female-fan-fic/&quot;&gt;Single post view of same post.&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I&apos;ve searched through the CSS and templates, but my tiny bit of CSS cut-and-paste knowledge isn&apos;t helping. Last time I posted to wordpress.org, I didn&apos;t get an answer. Any ideas? Thanks!</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.92939</guid>
		<pubDate>Sun, 01 Jun 2008 21:05:59 -0800</pubDate>
		<dc:creator>miniminimarket</dc:creator>
		
			<category>CSS</category>
		
			<category>wordpress</category>
		
			<category>html</category>
		
	</item> <item>
		<title>By: ssmith</title>
		<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe#1360416</link>	
		<description>I think if you look for the CSS selector called &quot;#feature p img&quot; in the file at:&lt;br&gt;
http://www.jessicasuarez.com/wp-content/themes/monochrome_lite/style.css&lt;br&gt;
&lt;br&gt;
The CSS looks like this:&lt;br&gt;
#feature p img {&lt;br&gt;
margin: 7px 0 2em 0;&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
That first zero is what&apos;s making it not have any whitespace on the right side of the image. Change it to something like the following and you should be all set.&lt;br&gt;
&lt;br&gt;
#feature p img {&lt;br&gt;
margin: 7px 1em 2em 0;&lt;br&gt;
}</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.92939-1360416</guid>
		<pubDate>Sun, 01 Jun 2008 21:41:02 -0800</pubDate>
		<dc:creator>ssmith</dc:creator>
	</item><item>
		<title>By: self</title>
		<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe#1360417</link>	
		<description>the comment count on the left is taking up a lot of real-estate on the front page. If you could move that up to the top, as in the single-post, I think you would see a lot of the problem resolved. Look for a div classed as &quot;comments&quot; or along those lines, and replace the php on the front page with the script from the single post.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.92939-1360417</guid>
		<pubDate>Sun, 01 Jun 2008 21:42:05 -0800</pubDate>
		<dc:creator>self</dc:creator>
	</item><item>
		<title>By: theiconoclast31</title>
		<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe#1360420</link>	
		<description>The front page image&apos;s margin is from &lt;code&gt;#feature p img { margin: 7px 0 2em 0; }&lt;/code&gt; from style.css, line 276. The single page image&apos;s margin is from &lt;code&gt;p img { margin: 1em 1em 1em 0; }&lt;/code&gt; from typography.css, line 57.&lt;br&gt;
&lt;br&gt;
For nagging little problems like this, I like using &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/1843&quot;&gt;Firebug&lt;/a&gt;. You can pick an element and it&apos;ll show you what CSS is being applied.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.92939-1360420</guid>
		<pubDate>Sun, 01 Jun 2008 21:46:37 -0800</pubDate>
		<dc:creator>theiconoclast31</dc:creator>
	</item><item>
		<title>By: maxwelton</title>
		<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe#1360469</link>	
		<description>Aside: There is also an odd img tag which isn&apos;t causing your problems, I don&apos;t think, but it has no src attribute, it&apos;s empty, which I&apos;ve never seen. Is this a hack I&apos;ve not heard of?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.92939-1360469</guid>
		<pubDate>Sun, 01 Jun 2008 23:03:22 -0800</pubDate>
		<dc:creator>maxwelton</dc:creator>
	</item><item>
		<title>By: miniminimarket</title>
		<link>http://ask.metafilter.com/92939/How-can-I-give-these-Wordpress-images-room-to-breathe#1368968</link>	
		<description>Thanks guys. I had to wait until this weekend to fiddle around, and I actually used all three suggestions: fixed the feature css to give the images room, moved the comment count and made the column bigger, and installed firebug to find the right elements. I don&apos;t know about the image tag not having an src attribute though.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.92939-1368968</guid>
		<pubDate>Sun, 08 Jun 2008 20:51:11 -0800</pubDate>
		<dc:creator>miniminimarket</dc:creator>
	</item>
	</channel>
</rss>
