author

Footer isue

2 months ago | adavis (Member) | |

I ordered and downloaded your book on modifying wordpress themes and as I work through it everything has been going along great until I got to the footers section.
Instead of being at the bottom of the page, the footer shows up just under the header and the footer text is at the very right of the page.

I have gone over the code in both the footer.php and style.css files a couple of times and it all matches the code in your book...so now I am officially stumped...what am I missing?

Thanks,

AD

Read responses...

Responses

  1. John:

    Posted 2 months ago by Key Master

    Possibly it could be a clearing issue. This is when an element on the page is 'floated', but the elements below it seem to move up. You can fix this by setting your footer element to have:

    #footer
    {
    clear: both;
    }

    Or by inserting a new element that does the same:

    <div style="clear: both"></div>
    <div id="footer">etc..

  2. author
    adavis:

    Posted 1 month ago by Member

    That did the trick, thank you.

    AD

  3. John:

    Posted 1 month ago by Key Master

    No problem

Reply

You must log in to post.

Home | Software | Terms & Conditions | Sitemap | John Godley © 2008