Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS First WordPress Page – Footer help

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #33482
    JMcCray
    Member

    Hello,

    I’ve recently (nearly) completed my first wordpress based site. I’ve figured almost everything except getting the footer to place. I’m not sure where to place it in the php structure, and how to style it to stay.. Everything I’ve tried has it floating everywhere but the bottom.

    All of the content is currently coded box model style.

    Any help/anyone willing to flip through my files with Firebug would be awesome!

    thanks.

    http://www.reviverevolution.com

    #101053
    theacefes
    Member

    A url would be nice or perhaps the relevant code.

    #101055
    Billy
    Participant

    Have you been using floats before it? Try doing this:

    #footer {
    clear: both;
    }
    #101058
    JMcCray
    Member
    #101334
    JMcCray
    Member

    Updated with links

    #101335
    Senff
    Participant

    Your wrapper is positioned relative, with all blocks in there positioned absolute. This removes all those inner blocks from the flow, and the result is that the height of the wrapper is 0 pixels. That doesn’t really help things.

    Instead of using position:absolute that much, you may want to try using floated blocks.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.