Cant move my footer down!

Discussion in 'CSS' started by aaron_nimocks, Sep 13, 2008.

  1. #1
    aaron_nimocks, Sep 13, 2008 IP
  2. Codythebest

    Codythebest Notable Member

    Messages:
    5,764
    Likes Received:
    253
    Best Answers:
    0
    Trophy Points:
    275
    #2
    Did you try a TABLE?
     
    Codythebest, Sep 13, 2008 IP
  3. Boulder

    Boulder Well-Known Member

    Messages:
    806
    Likes Received:
    46
    Best Answers:
    0
    Trophy Points:
    118
    #3
    In your theme css file find the id of #sidebar and add more margin or padding to the bottom setting.


    Make it look something like this.

    #sidebar {float:left;margin:40px 0 75px 0;width:200px;}


    Where 75 is the distance you are wanting to press the footer lower.

    Also if the margin does not work well try using padding in the same id.. something like this.

    #sidebar {
    float:left;
    margin:40px 0 0;
    padding: 0px 0px 75px 0px;
    width:200px;
    }


    Again 75px being the number setting to pres footer lower.

    Boulder
     
    Boulder, Sep 13, 2008 IP
    aaron_nimocks likes this.
  4. rochow

    rochow Notable Member

    Messages:
    3,991
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    240
    #4
    Ah someone put it into WP.

    Change the old line to this:
    #sidebar {float:left;margin:40px 0 200px;width:200px}

    Works a treat ;)
     
    rochow, Sep 13, 2008 IP
    aaron_nimocks likes this.
  5. aaron_nimocks

    aaron_nimocks Im kind of a big deal Staff

    Messages:
    5,563
    Likes Received:
    627
    Best Answers:
    0
    Trophy Points:
    420
    #5
    I moved it into wordpress. :)

    Thanks, Ill change that.
     
    aaron_nimocks, Sep 14, 2008 IP
  6. aaron_nimocks

    aaron_nimocks Im kind of a big deal Staff

    Messages:
    5,563
    Likes Received:
    627
    Best Answers:
    0
    Trophy Points:
    420
    #6
    aaron_nimocks, Sep 14, 2008 IP
  7. rochow

    rochow Notable Member

    Messages:
    3,991
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    240
    #7
    Fixed that too :)

    *crowd goes wild*
     
    rochow, Sep 14, 2008 IP