<?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; Tag: edit footer - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/edit-footer</link>
		<description>WordPress.com Forums &#187; Tag: edit footer - Recent Posts</description>
		<language>en</language>
		<pubDate>Thu, 23 May 2013 09:44:20 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/edit-footer" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "Changing Header &amp; Footer"</title>
			<link>http://en.forums.wordpress.com/topic/changing-header-footer#post-1104390</link>
			<pubDate>Thu, 27 Dec 2012 03:54:06 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1104390@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>2. How can I make my header linkable? Thank you.</p></blockquote>
<p>You can't add links directly using CSS, but often you can set a background to a link element that's already clickable and use that to make what you add with CSS appear clickable. In your current setup, you might start by hiding the current header image like this:</p>
<pre><code>#headerimage {
	background: none;
	height: 0;
}</code></pre>
<p>Then you could make space inside the site title area used by the MistyLook theme to add a new header image as a background for the site title link:</p>
<pre><code>#header {
	width: 938px;
	padding-bottom: 0;
}

#header h1 a {
	display: block;
	width: 958px;
	height: 116px;
	background: url(&#039;http://www.burnerprep.com/00224-1/design/images/header-bg.png&#039;) no-repeat;
}</code></pre>
<p>For a final touch, you can hide the tagline area (the "h2" in the header) to get rid of the space it's using up and you can remove some padding from the feeds to tighten up the space below the header image:</p>
<pre><code>#header h2 {
	display: none;
}

html #feedarea {
	padding-top: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Changing Header &amp; Footer"</title>
			<link>http://en.forums.wordpress.com/topic/changing-header-footer#post-1104389</link>
			<pubDate>Thu, 27 Dec 2012 03:53:58 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1104389@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>1. My main site is <a href="http://www.burnerprep.com" rel="nofollow">http://www.burnerprep.com</a>. Can I edit the header and footer css of my WordPress blog theme, MistyLook, to give it the appearance of my main website (the categories on the sides and the menu on top).</p></blockquote>
<p>What  you'll want to do is look at the CSS in the main site for inspiration. In order to edit and work with the CSS, I would also recommend starting out with a tutorial such as <a href="http://www.htmldog.com/guides/cssbeginner/" rel="nofollow">http://www.htmldog.com/guides/cssbeginner/</a> so that you can learn the basics. You should also learn how to use your browser's web inspector tool. Most modern browsers have one and it let's you right-click on an element and select "Inspect Element" to see the corresponding HTML and all of the CSS that apply to it.</p>
<p>I will start you out with an example. I used my browser's web inspector and looked at <a href="http://www.burnerprep.com/" rel="nofollow">http://www.burnerprep.com/</a> and found that this image is used for the ".content-holder" background:<br />
<a href="http://www.burnerprep.com/00224-1/design/images/content-holder.png" rel="nofollow">http://www.burnerprep.com/00224-1/design/images/content-holder.png</a></p>
<p>Then I looked at </p>
<pre><code>#container {
	background: url(&#039;http://www.burnerprep.com/00224-1/design/images/content-holder.png&#039;) repeat-y;
	border: 0;
}</code></pre>
<p>That image is 958 pixels wide though, so  you could either adjust the image and upload a smaller version of it or you can expand the width of the blog. To expand the container for the MistyLook theme, you might start with something like this and adjust the numbers until you like how it looks:</p>
<pre><code>#container {
	width: 958px;
}

#content-main {
	width: 73%;
}

#sidebar {
	width: 24%;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>burnerprep on "Changing Header &amp; Footer"</title>
			<link>http://en.forums.wordpress.com/topic/changing-header-footer#post-1085488</link>
			<pubDate>Tue, 04 Dec 2012 05:12:46 +0000</pubDate>
			<dc:creator>burnerprep</dc:creator>
			<guid isPermaLink="false">1085488@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have two questions. I got the CSS upgrade for MistyLook.</p>
<p>1. My main site is <a href="http://www.burnerprep.com" rel="nofollow">http://www.burnerprep.com</a>. Can I edit the header and footer css of my WordPress blog theme, MistyLook, to give it the appearance of my main website (the categories on the sides and the menu on top).</p>
<p>2. How can I make my header linkable? Thank you.
</p>
]]></description>
					</item>
		<item>
			<title>lightheart72917 on "Hide the date and author on the posts"</title>
			<link>http://en.forums.wordpress.com/topic/hide-the-date-and-author-on-the-posts#post-998197</link>
			<pubDate>Tue, 04 Sep 2012 18:17:51 +0000</pubDate>
			<dc:creator>lightheart72917</dc:creator>
			<guid isPermaLink="false">998197@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Great idea. Thank you. I had not thought of adding a widget. will probably do that. Thanks!
</p>
]]></description>
					</item>
		<item>
			<title>zandyring on "Hide the date and author on the posts"</title>
			<link>http://en.forums.wordpress.com/topic/hide-the-date-and-author-on-the-posts#post-997989</link>
			<pubDate>Tue, 04 Sep 2012 14:56:08 +0000</pubDate>
			<dc:creator>zandyring</dc:creator>
			<guid isPermaLink="false">997989@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>To hide the date/author, add this to your CSS:</p>
<pre><code>.post-meta {
display: none;
}</code></pre>
<p>I agree with Raincoaster that you may want to add a text widget to your sidebar with contact details, or add a contact page, rather than add it to the footer.</p>
<p>But, to add to your footer, I believe the following will work for you:</p>
<pre><code>#copyright {
content: &quot;This is your contact details.&quot;;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>raincoaster on "Hide the date and author on the posts"</title>
			<link>http://en.forums.wordpress.com/topic/hide-the-date-and-author-on-the-posts#post-997579</link>
			<pubDate>Tue, 04 Sep 2012 00:13:43 +0000</pubDate>
			<dc:creator>raincoaster</dc:creator>
			<guid isPermaLink="false">997579@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can add to your footer, you just can't remove the links that are already there. Additionally, with Infinite Scroll coming to all themes, you might be better advised to put your contact details somewhere else, like a Sticky post, an Alert, or a text widget. </p>
<p>You will have to wait until staff reply with the code you require. There is no more volunteer support for CSS. As it's a long weekend, it may take a day or so.
</p>
]]></description>
					</item>
		<item>
			<title>lightheart72917 on "Hide the date and author on the posts"</title>
			<link>http://en.forums.wordpress.com/topic/hide-the-date-and-author-on-the-posts#post-997537</link>
			<pubDate>Mon, 03 Sep 2012 23:19:49 +0000</pubDate>
			<dc:creator>lightheart72917</dc:creator>
			<guid isPermaLink="false">997537@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>How do I hide the date and author name on the posts? I do not care about the url showing in the link. Also, I do not want to hide the footer, I want to add to it. Are you stating that I can't even add a footer to my blog at all?  I'm wanting to add my blog footer with my contact information. It there another want to do this or should I search for another blog theme that has this option.
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "How to add text to footer css code?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-add-text-to-footer-css-code#post-265540</link>
			<pubDate>Thu, 30 Oct 2008 22:31:58 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">265540@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Link to your wordpress.COM blog, please. And consider linking it in your user name as explained in the sticky, 8 Things, at the top of the forum
</p>
]]></description>
					</item>
		<item>
			<title>ourplanet1 on "How to add text to footer css code?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-add-text-to-footer-css-code#post-265538</link>
			<pubDate>Thu, 30 Oct 2008 22:27:27 +0000</pubDate>
			<dc:creator>ourplanet1</dc:creator>
			<guid isPermaLink="false">265538@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>How can I add text to my footer??   company name phone number etc. </p>
<p>I keep trying to edit it, but have not been able to.
</p>
]]></description>
					</item>

	</channel>
</rss>
