Viewing 2 replies - 1 through 2 (of 2 total)
  • It is the below that is causing it in your bootstrap.min.css

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

    So in your style sheet you can just do the below to override it. But it might not give you what you expect for appearance.

    .row {
    margin-right: 0px;
    margin-left: 0px;
    }
    Thread Starter viliauskas

    (@viliauskas)

    I fount right solution for me:

    body, html {
    overflow-x: hidden;
    }

    It helped for me. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Empty space in the right side’ is closed to new replies.