Love Trivedi
Love Trivedi

Reputation: 4046

Page showing scroll bar, why I don't know

My page is showing a scroll bar on the bottom. I'm using bootstrap 3.0. but I really don't know why the page is showing the scroll bar.

This is the link Hkonnect. Kindly give me suggestions to resolve this issue.

Upvotes: 0

Views: 43

Answers (1)

Deryck
Deryck

Reputation: 7668

Bootstrap is adding this to your CSS:

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

You can add a file to the end of your <head> section to cancel it out. Put this in the CSS file:

.row {
    margin-left: 0!important;
    margin-right: 0!important;
}

and include like this:

<html>
<head>
<link rel="stylesheet" type="text/css" src="/path/to/file.css">
...
</head>
...

or put it inline like this:

<head>
...
<style>
    .row {
        margin-left: 0!important;
        margin-right: 0!important;
    }
</style>
...
</head>

Cheers :)

Upvotes: 1

Related Questions