Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<body>
<div class="container">
    <div class="navbar1 navbar navbar-inverse">
        <div class="navbar-inner">
            <ul class="nav pull-right">
                <li><a href="#">sign in</a></li>
            </ul>
        </div>
    </div>
</div><!--/container NAVBAR-->

<div class="container">
    <div class="row-fluid">
        <div class="header">
            <div class="span12">
                <h1> Hello World</h1>
            </div>
        </div><!--/inner-wrapper-->
    </div><!--/row-fluid-->
</div><!--/container-->
</body>

EDIT

In this classes like span**, navbar, row-fluid, container create default padding.

Take a look into this page: http://jsfiddle.net/SjYyj/1/

There is a gap between "header" class and "navbar"! How to remove that without adjusting padding!

share|improve this question
1  
agam360's answer would appear correct, but it's hard to know without a demo. Here's a start: jsfiddle.net/vYVG9 – isherwood Feb 10 at 18:21
@isherwood please check the above question again (edited) – Surya Feb 10 at 18:29
Looks just like the fiddle I linked, but mine shows your problem fixed. :-) – isherwood Feb 10 at 18:32

1 Answer

up vote 0 down vote accepted

Edit - Update:
Well, you basically want the padded area to have a background color, without changing the padding.
The simplest solution I could think of is:
Wrap the whole 'back end' with a fixer class, and give it a background color.
html:

<!DOCTYPE html>
<hhttp://jsfiddle.net/SjYyj/#forktml lang="en">

    <head>
        <title>Home</title>
        <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css"
        rel="stylesheet">
    </head>

    <body>
        <div class="fixpadding"><!--Fixer-->
            <div class="container">
                <div class="navbar1 navbar navbar-inverse">
                    <div class="navbar-inner">
                        <ul class="nav pull-right">
                            <li><a href="#">sign in</a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
            <!--/container-->
            <div class="container">
                <div class="row-fluid">
                    <div class="header">
                        <div class="span12">
                                <h1> Hello World</h1>

                        </div>
                    </div>
                    <!--/inner-wrapper-->
                </div>
                <!--/row-fluid-->
            </div>
            <!--/container-->
        </div>
        <!--End Fixer-->
        <script src="./js/jquery.min.js"></script>
        <script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script>
    </body>

    </html>

css:

.header {
    background-color: grey;
}
.fixpadding {
    background-color: grey;
    border-radius:4px 4px 0 0; /* Fine-tuning with nav bar */
}

Try it out.

Edit 2:

You may see that if you resize the window, the background color will "spread-out" . To fix this, I've warped all of the body with a container, and set some more css:
html:

<div class="container">
        <div class="fixpadding">
        ...
        </div>
<!--End Fixer-->
</div>

css:

.header {
    background-color: grey;
}
.fixpadding {
    background-color: grey;
    background-size: contain;
    border-radius:4px 4px 0 0;/* Fine-tuning with nav bar*/
}

Check it out.

Edit 3:

You can't color a padded area specifically.
I made some changes to show you what you could do:
Try it here.
The red and green colors are there so you could see the impact.
I've hard-coded the css into the html so you won't need to hassle with the selectors.
HTML:

<!DOCTYPE html>
<hhttp://jsfiddle.net/SjYyj/#forktml lang="en">
<head>
    <title>Home</title>
    <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
</head>

<body>
  <div class="container" style="background-color:red;border-radius:4px 4px 0 0;">
    <div class="navbar1 navbar navbar-inverse">
        <div class="navbar-inner">
            <ul class="nav pull-right">
                <li><a href="#">sign in</a></li>
            </ul>
        </div>
    </div>
</div><!--/container-->

<div class="container" style="background-color:green;">
    <div class="row-fluid">
        <div class="header">
            <div class="span12">
                <h1> Hello World</h1>
            </div>
        </div><!--/inner-wrapper-->
    </div><!--/row-fluid-->
</div><!--/container-->
<script src="./js/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script>

</body>

</html>
share|improve this answer
please check the above question again (edited) – Surya Feb 10 at 18:30
@Surya, answer updated. – agam360 Feb 10 at 21:55
I think you didn't get it! I want the background only for header!! – Surya Feb 11 at 12:53
@Surya, you will need also to attach the bg for the next container, or you will get a white gap. See my third edit. – agam360 Feb 11 at 13:36
I guess now you got my issue. i want that red area to cover green.. We can hard-code if its just a "color".. what if its a image? Should we remove padding.. as stated by someone earlier in comments.. that's the possible solution I see as for now – Surya Feb 11 at 13:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.