<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: Frontpage footer issue</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 12:56:39 +0000</pubDate>

<item>
<title>melissamcf on "Frontpage footer issue"</title>
<link>http://themeshaper.com/forums/topic/frontpage-footer-issue#post-10539</link>
<pubDate>Sun, 07 Mar 2010 18:34:18 +0000</pubDate>
<dc:creator>melissamcf</dc:creator>
<guid isPermaLink="false">10539@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm pretty new to Thematic and working with this kind of CSS/PHP, but so far I've managed to troubleshoot for myself. However, this problem is driving me crazy...I'm sure there's an easy solution but I can't see it myself. (For the record, I still have a lot to work on on this site I'm about to show! Please excuse the messiness.)&#60;/p&#62;
&#60;p&#62;I'm adding a background image to the footer, and on secondary pages like this one, it works fine: &#60;a href=&#34;http://melissamcfeeters.com/wordpress/?page_id=2&#34;&#62;about&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;However, the footer doesn't line up properly on the static frontpage: &#60;a href=&#34;http://melissamcfeeters.com/wordpress/&#34;&#62;home&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It looks like it's caught up in the container/content divs, but as far as I can tell it's not any different from the secondary pages which work fine. This should not be so complicated! Any ideas??&#60;/p&#62;
&#60;p&#62;Here is some code from the frontpage.php file I added:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php /*
Template Name: Front Page
*/
?&#38;gt;
&#38;lt;?php
global $options;
foreach ($options as $value) {
    if (get_option( $value[&#38;#39;id&#38;#39;] ) === FALSE) { $$value[&#38;#39;id&#38;#39;] = $value[&#38;#39;std&#38;#39;]; }
    else { $$value[&#38;#39;id&#38;#39;] = get_option( $value[&#38;#39;id&#38;#39;] ); }
    }
?&#38;gt;
&#38;lt;?php get_header() ?&#38;gt;

	&#38;lt;div id=&#38;quot;homecontainer&#38;quot;&#38;gt;
		&#38;lt;div id=&#38;quot;homecontent&#38;quot;&#38;gt;
&#38;lt;?php the_post() ?&#38;gt;
			&#38;lt;div id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php thematic_post_class() ?&#38;gt;&#38;quot;&#38;gt;

				&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php the_content() ?&#38;gt;&#38;lt;/div&#38;gt;
			&#38;lt;?php thematic_navigation_above();?&#38;gt;
            &#38;lt;?php thematic_navigation_below();?&#38;gt;
            	&#38;lt;/div&#38;gt;&#38;lt;!-- #homecontent --&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #homecontainer --&#38;gt;
			&#38;lt;?php get_footer() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And this is just the normal code from the Thematic page.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php get_header() ?&#38;gt;

	&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;
		&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;

&#38;lt;?php get_sidebar(&#38;#39;page-top&#38;#39;) ?&#38;gt;

&#38;lt;?php the_post() ?&#38;gt;
			&#38;lt;div id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php thematic_post_class() ?&#38;gt;&#38;quot;&#38;gt;
    			&#38;lt;?php thematic_postheader(); ?&#38;gt;
				&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php the_content() ?&#38;gt;

&#38;lt;?php wp_link_pages(&#38;quot;\t\t\t\t\t&#38;lt;div class=&#38;#39;page-link&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Pages: &#38;#39;, &#38;#39;thematic&#38;#39;), &#38;quot;&#38;lt;/div&#38;gt;\n&#38;quot;, &#38;#39;number&#38;#39;); ?&#38;gt;

&#38;lt;?php edit_post_link(__(&#38;#39;Edit&#38;#39;, &#38;#39;thematic&#38;#39;),&#38;#39;&#38;lt;span class=&#38;quot;edit-link&#38;quot;&#38;gt;&#38;#39;,&#38;#39;&#38;lt;/span&#38;gt;&#38;#39;) ?&#38;gt;

				&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;

&#38;lt;?php if ( get_post_custom_values(&#38;#39;comments&#38;#39;) ) thematic_comments_template() // Add a key+value of &#38;quot;comments&#38;quot; to enable comments on this page ?&#38;gt;

&#38;lt;?php get_sidebar(&#38;#39;page-bottom&#38;#39;) ?&#38;gt;

		&#38;lt;/div&#38;gt;&#38;lt;!-- #content --&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #container --&#38;gt;

&#38;lt;?php thematic_sidebar() ?&#38;gt;
&#38;lt;?php get_footer() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Looks pretty much the same right?? Any help would be much appreciated, let me know what other code you'd like to see...like I said, I'm new at this.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
