- This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
- The forum ‘CSS’ is closed to new topics and replies.
The forums ran from 2008-2020 and are now closed and viewable here as an archive.
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?
This is what’s causing it:
.row {
margin-left: -15px;
margin-right: -15px;
}
I’m not seeing any scrolling issue.
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>
Late reply. Problem is now fixed was to do with some of the css mark up. http://codepen.io/kiwi83/pen/qjkBK
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 ?
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