<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<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>WordPress.com Forums &#187; Topic: Fresh &amp; Clean Theme - Homepage Image Margin</title>
		<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin</link>
		<description>WordPress.com Forums &#187; Topic: Fresh &amp; Clean Theme - Homepage Image Margin</description>
		<language>en</language>
		<pubDate>Sun, 19 May 2013 08:36:28 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/fresh-clean-theme-homepage-image-margin" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1124704</link>
			<pubDate>Tue, 15 Jan 2013 13:28:22 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1124704@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>So is there an exact number to put in place of that "0" that all the other pages have to make it match exactly or is it just based on how it appears?</p></blockquote>
<p>Well, the spacing below the nav bar is the same for all pages if you don't add the rule for the <a href="http://11213.org/king-in-the-field/" rel="nofollow">http://11213.org/king-in-the-field/</a> page:</p>
<pre><code>.page-id-1763 #access {
	margin-bottom: 0;
}</code></pre>
<p>It's just that the image at the top of that page has its own extra padding, and that's probably what should be removed instead. Give the following a try, it's probably a better solution now that you've posted some specific examples and I have a better idea of what you're trying to do:</p>
<p>1) Remove the "page-id-1763" custom CSS<br />
2) Open the page for editing<br />
3) Click the image in the visual editor<br />
4) Click the image edit icon that appears<br />
5) Click the "Advanced Settings" tab<br />
6) Add this to the "Styles" field: margin-top: 0;<br />
7) Click "Update" to save the image change and then save the post
</p>
]]></description>
					</item>
		<item>
			<title>11213org on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1115025</link>
			<pubDate>Mon, 07 Jan 2013 20:44:34 +0000</pubDate>
			<dc:creator>11213org</dc:creator>
			<guid isPermaLink="false">1115025@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>OK...</p>
<p>I see that adding the code across the board ruins the margins on all the other pages</p>
<p>So I added it to just that draft page (<a href="http://11213.org/king-in-the-field/" rel="nofollow">http://11213.org/king-in-the-field/</a>)</p>
<p>If you look now, you will see it moved up but too much and doesn't match the other pages (for example: <a href="http://11213.org/about/" rel="nofollow">http://11213.org/about/</a>)</p>
<p>I noticed that if I edit the number "0" in the code you give me, the gap gets slightly larger with each point I add...</p>
<p>.page-id-1763 #access {<br />
	margin-bottom: 0;<br />
}</p>
<p>So is there an exact number to put in place of that "0" that all the other pages have to make it match exactly or is it just based on how it appears?</p>
<p>Once we get that, I would like to know - How  do you find the "page id"? Since the page I have been using was just for testing and not the page I will go live with... (For now it wont be the home page either) so how do I find the "page id" so I can use it when I like, on only the pages I like?</p>
<p>Thank you very much for your help
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1112603</link>
			<pubDate>Fri, 04 Jan 2013 22:47:10 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1112603@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for the link. Example links make it so much easier to help!</p>
<p>To get rid of the spacing below the menu on the <a href="http://11213.org/king-in-the-field/" rel="nofollow">http://11213.org/king-in-the-field/</a> page, try adding the following to your Appearance &#8594; Custom Design &#8594; CSS editor:</p>
<pre><code>#access {
	margin-bottom: 0;
}</code></pre>
<p>If you want to apply that rule to just the <a href="http://11213.org/king-in-the-field/" rel="nofollow">http://11213.org/king-in-the-field/</a> page, you can look in the body tag to see what specific classes it has and use one of them in the selector to make it work for just that page. <a href="http://11213.org/king-in-the-field/" rel="nofollow">http://11213.org/king-in-the-field/</a> has a body class of "page-id-1763" so you could do this:</p>
<pre><code>.page-id-1763 #access {
	margin-bottom: 0;
}</code></pre>
<p>Or if you find that you only want to make that adjustment to the home page (after you switch it), put ".home" in front of the selector to get this:</p>
<pre><code>.home #access {
	margin-bottom: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>11213org on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1111505</link>
			<pubDate>Thu, 03 Jan 2013 21:02:32 +0000</pubDate>
			<dc:creator>11213org</dc:creator>
			<guid isPermaLink="false">1111505@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Just noticed your new post now</p>
<p>This question was asked a while ago since then I changed to the standard slider homepage - and yes that does have the same size gap.</p>
<p>However I do plan on switching back to the custom homepage I had when I originally posted this.</p>
<p>This is not my live homepage now but this is what it looked like:<br />
<a href="http://11213.org/king-in-the-field/" rel="nofollow">http://11213.org/king-in-the-field/</a></p>
<p>I am planing on switching back to this format any day now and if I can have that margin issue figured out that would be great. (I may post an image in that 900x500 space or a video either way it leaves a big gap above it)</p>
<p>Thank you for your help.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1104412</link>
			<pubDate>Thu, 27 Dec 2012 04:46:12 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1104412@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I compared the space above the "#main" element in <a href="http://11213.org/" rel="nofollow">http://11213.org/</a> and <a href="http://11213.org/about/" rel="nofollow">http://11213.org/about/</a> and the gap appears the same to me. Take a look at the purple arrow in this screenshot: <a href="http://cl.ly/Lp0w" rel="nofollow">http://cl.ly/Lp0w</a></p>
<p>Is that the space you're referring to or am I looking at the wrong thing?
</p>
]]></description>
					</item>
		<item>
			<title>11213org on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1087759</link>
			<pubDate>Thu, 06 Dec 2012 01:17:35 +0000</pubDate>
			<dc:creator>11213org</dc:creator>
			<guid isPermaLink="false">1087759@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Anybody?
</p>
]]></description>
					</item>
		<item>
			<title>11213org on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1067611</link>
			<pubDate>Tue, 13 Nov 2012 02:01:17 +0000</pubDate>
			<dc:creator>11213org</dc:creator>
			<guid isPermaLink="false">1067611@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Anybody know what I can do?</p>
<p>Thank you
</p>
]]></description>
					</item>
		<item>
			<title>houstonweaver on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1064699</link>
			<pubDate>Thu, 08 Nov 2012 22:11:43 +0000</pubDate>
			<dc:creator>houstonweaver</dc:creator>
			<guid isPermaLink="false">1064699@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I do see what you mean.   Have to leave it to others to solve.  Good luck.
</p>
]]></description>
					</item>
		<item>
			<title>11213org on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1064667</link>
			<pubDate>Thu, 08 Nov 2012 21:29:17 +0000</pubDate>
			<dc:creator>11213org</dc:creator>
			<guid isPermaLink="false">1064667@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Maybe using the calendar page wasn't a good example</p>
<p>Look at the homepage <a href="http://11213.org/" rel="nofollow">http://11213.org/</a></p>
<p>That gap compared to the gaps on the "About" and "Archive" page mentioned above</p>
<p>Thanks
</p>
]]></description>
					</item>
		<item>
			<title>houstonweaver on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1064641</link>
			<pubDate>Thu, 08 Nov 2012 21:09:53 +0000</pubDate>
			<dc:creator>houstonweaver</dc:creator>
			<guid isPermaLink="false">1064641@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Your calendar page image has a lot of white space at the top.  I see a line where the image begins and looks like it is the same distance down from the page bar.  Crop your image of the calendar page and it will be better.</p>
<p>I see what you mean about your spacing of the images.  I don't have an answer for that one.
</p>
]]></description>
					</item>
		<item>
			<title>11213org on "Fresh &amp; Clean Theme - Homepage Image Margin"</title>
			<link>http://en.forums.wordpress.com/topic/fresh-clean-theme-homepage-image-margin#post-1064358</link>
			<pubDate>Thu, 08 Nov 2012 17:18:09 +0000</pubDate>
			<dc:creator>11213org</dc:creator>
			<guid isPermaLink="false">1064358@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>My site is <a href="http://11213.org" rel="nofollow">http://11213.org</a> and I have the custom CSS upgrade</p>
<p>I am using my homepage for images that link to posts/pages</p>
<p>If you look at the "Home" (or "Calendar") page at the space above the image - there is a wide gap between the top of the image and the page bar</p>
<p>On the "About" page (<a href="http://11213.org/about/" rel="nofollow">http://11213.org/about/</a>) the gap between the top of the video and the page bar is smaller.</p>
<p>On the "Archive" (<a href="http://11213.org/archive/" rel="nofollow">http://11213.org/archive/</a>) page the gap between the top of the first image thumbnail and page bar is smaller.</p>
<p>I would like to make the gap on the "Home" page a bit smaller to match the way it is on the "About (or "Archive") page.</p>
<p>What is the CSS code to do that?</p>
<p>Thank you</p>
<p>PS: While on the subject of image margins, on the home page under the main large image there are 4 smaller ones - they were centered in the "Visual" side of the page editor. For some reason the 4 images together are not exactly centered but are pushed slightly to the left so the gap on the right side is bigger than the gap on the left side - please let me know how to adjust this if it cant be done in the visual editor - what about CSS?
</p>
]]></description>
					</item>

	</channel>
</rss>
