Forums

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

Home Forums CSS [Solved] Scrolling On Footer Not Going Away

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #163933
    wolfgang1983
    Participant

    Hi I have just small issue on my footer I have a scrolling issue should not be any for some reason there is any idea why?

    http://codepen.io/kiwi83/pen/qjkBK

    #163940
    Sedana
    Participant

    This is what’s causing it:

    .row {
    margin-left: -15px;
    margin-right: -15px;
    }

    #163951
    Paulie_D
    Member

    I’m not seeing any scrolling issue.

    #163954
    paulob
    Participant

    HI,

    The problem is that you have put .row inside your subfooter without being inside .container.

    In bootstrap all .rows must have a parent called .container because the container has a padding left and right which the .row offsets with the same negative margin (in order to keep columns equally spaced).

    <div class="container">
     <div class="row">
       ...
      </div>
    </div>
    
    #164016
    wolfgang1983
    Participant

    Late reply. Problem is now fixed was to do with some of the css mark up. http://codepen.io/kiwi83/pen/qjkBK

    #164026
    paulob
    Participant

    Problem is now fixed was to do with some of the css mark up

    I beg to differ but the problem seems to be fixed because you added .container around .row as I suggested and nothing to do with the css as such ?

    #164028
    wolfgang1983
    Participant

    I thought it was the css I worked on and not the html. Was doing to many things at once. Forget what I done some times.

    Cheers

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