• ok ive customized my wordpress theme quite a bit and im getting some problems with the footer, i noticed that the footer always ends at the catagories box on the ride side even if the text in the post goes past that. Here look at this page and u will see what i mean.

    http://www.anime-hotspot.net/wordpress/?p=9

    see how the footer is right in the middle of the post?

    how do i make it so the footer is after the content and the comments form?

Viewing 6 replies - 1 through 6 (of 6 total)
  • In the footer.php file, you have <div style="clear: both"> – add width: 100% to that and see if that works.

    Thread Starter Fury

    (@fury)

    im sorry im new to this kind of stuff

    here is the code for my current footer

    <div style="clear: both;"></div>
        <div class="footerwrap"><div class="innerfooter">
    	<div class="footer">
    <br />
    <a href="/about-us"><font color="#000000" style="tahoma" size="1"><b>About</b></font></a>&nbsp;::&nbsp;<a href="/privacy-policy"><font color="#000000" style="tahoma" size="1"><b>Privacy Policy</b></font></a>&nbsp;::&nbsp;<a href="/tos"><font color="#000000" style="tahoma" size="1"><b>Terms of Use</b></font></a>&nbsp;::&nbsp;<a href="/contact"><font color="#000000" style="tahoma" size="1"><b>Contact</b></font></a><br />
    <font color="#000000" style="tahoma" size="1"><b>Partners:</b></font>
    <p>
    
    </p>
    Third-party trademarks are used solely for describing the content indexed herein and no license or other affiliation is implied.
    	    <p>Copyright <strong>AnimeVenue.com</strong> 2007 - Anime Episodes for everyone! All rights reserved.<br />
    	    Entries (<a href="<?php bloginfo('rss2_url'); ?>" title="Entries">RSS</a>) and Comments (<a href="<?php bloginfo('comments_rss2_url'); ?>" title="Comments">RSS</a>). Theme Courtesy of <a href="http://www.animevenue.com">Anime Venue</a></p>
    
    	</div>
        </div></div>
    </div> 
    
    </body>
    </html>

    so whats the exact code you want me to add to it?

    The first line – change <div style="clear: both;"></div> to <div style="clear: both;width: 100%"></div> – I think that might work.

    Thread Starter Fury

    (@fury)

    no that did not fix it, it still looks the same, can anybody else fix it?

    Try moving the last </div> to the top of the footer file. So you’d end up with this:

    </div>
    <div style="clear: both;width: 100%"></div>
        <div class="footerwrap"><div class="innerfooter">
    	<div class="footer">
    
    <a href="/about-us"><font color="#000000" style="tahoma" size="1"><b>About</b></font></a>�::�<a href="/privacy-policy"><font color="#000000" style="tahoma" size="1"><b>Privacy Policy</b></font></a>�::�<a href="/tos"><font color="#000000" style="tahoma" size="1"><b>Terms of Use</b></font></a>�::�<a href="/contact"><font color="#000000" style="tahoma" size="1"><b>Contact</b></font></a>
    <font color="#000000" style="tahoma" size="1"><b>Partners:</b></font>
    
    Third-party trademarks are used solely for describing the content indexed herein and no license or other affiliation is implied.
    	    Copyright <strong>AnimeVenue.com</strong> 2007 - Anime Episodes for everyone! All rights reserved.
    	    Entries (<a>" title="Entries">RSS</a>) and Comments (<a>" title="Comments">RSS</a>). Theme Courtesy of <a href="http://www.animevenue.com">Anime Venue</a>
    
    	</div>
        </div></div>
    </body>
    </html>

    Actually, I take all of that back. What you should do is get a theme that is error-free:

    56 errors!

    It’s really no use trying to fix anything when the code is so messed up. It makes it hard to find the issue if you have all that other stuff to wade through.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Problems with footer’ is closed to new replies.