Why my footer's blocks do not align rightly

Discussion in 'HTML & Website Design' started by ketting00, Jan 27, 2014.

  1. #1
    Hi guys,

    I cannot figure out why the left and right footer blocks of this page do not align evenly:

    http://meldville.com/home/profile.php?featured_id=3#

    I double check everything and still have no idea why it aligns like this.

    Thank you,
     
    Solved! View solution.
    ketting00, Jan 27, 2014 IP
  2. #2
    It's your CSS.

    Swap this in your code
    
    @media only screen and (min-width: 769px) {
    ul.foo-3 li {
    margin: 0 0 0 10px;
    padding-top: 0;
    padding-bottom: 9px;
    float: right;
    }
    }
    
    Code (markup):
    and

    
    @media only screen and (min-width: 769px) {
    .footer ul {
    margin: 0;
    margin-right: 10px;
    padding: 0;
    float: right;
    }
    }
    
    Code (markup):
     
    HuggyStudios, Jan 28, 2014 IP
  3. ketting00

    ketting00 Well-Known Member

    Messages:
    782
    Likes Received:
    28
    Best Answers:
    3
    Trophy Points:
    128
    #3
    thank you, it works
     
    ketting00, Jan 28, 2014 IP