• Resolved cfaria

    (@cfaria)


    Hi there,

    I’ve moved my footer from the sidebar to the bottom of the page (by adding to footer.php and amending the stylesheet), which seems to work fine in IE, but displays funny in Firefox.

    http://www.ben4ben.org.uk/

    Any ideas? Help!

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • t31os

    (@t31os)

    Find this in style.css

    #footer {
      text-align:center;
      font-size: 10px;
      color:#686868;
      float: absolute;
      padding: 20px 0px;
    }

    Add this…

    clear:both;

    So it looks like this..

    #footer {
      text-align:center;
      font-size: 10px;
      color:#686868;
      float: absolute;
      padding: 20px 0px;
      clear:both;
    }

    I’m also not sure why float is set to absolute, you can’t use absolute with float…

    Should be either…

    position:absolute;
    or
    float:X

    Where X should be left, right or none…

    Thread Starter cfaria

    (@cfaria)

    Thanks for the tip, it worked!

    t31os

    (@t31os)

    You’re welcome.. 🙂

    Hi,
    I’m also using the sliding door theme and am trying to move the footer from below the sidebar to the bottom of the page. Could you tell me what changes you made to the footer and stylesheet that accomplished this?
    Thanks!

    Dan

    Dan,

    Did you get this resolved? I think the Sliding Door Theme might require a completely different solution.

    BNJ

    THe support page for the theme has the answer to how to do this.

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