Force navbar to not overlap content on in-page navigation

Andrei V

I have a simple web page with a navbar and some content.

<div class="navbar-collapse collapse">
    <ul class="nav navbar-nav">
        <li><a id="about" href="#first">First section</a></li>
        <li><a id="about" href="#second">Second section</a></li>
    </ul>
</div>

<div class="container body-content">
    <div class="row">
        <div class="col-md-12">
            <img alt="this should be my image" />
            <h3 id="first">The first section</h3>
            <p>... content ...</p>
            <h3 id="second">The second section</h3>
            <p>... content ...</p>
        </div>
    </div>
</div>

The navbar links to sections in the same page. Whenever a link is clicked, the page scrolls to the targeted element but the content gets overlapped by the navbar. Concretely, if the link to the first section is clicked (First) the page gets scrolled to the first h3 element, but the element is actually rendered under the navbar element How can this be fixed? See fiddle for details -- decrease the height of the results panel to better see the problem.

Topr

A CSS only solution would be to add padding to the h3 id and a negative margin to remove the redundant whitespace. For example:

#first, #second {
    padding-top: 200px;
    margin-top: -200px;
}

See my JSFiddle here.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Dompdf default page header content overlap

From Dev

How to force background down whole page when content overflows?

From Dev

Page content is covered by navigation bar

From Dev

Force footer to the bottom of the page if no content is available

From Dev

Asp.net Master page navigation with content pages

From Dev

Bootstrap navbar-fixed-top hiding page content

From Dev

Put div below navigation bar and don't overlap content

From Dev

How to force report items to overlap?

From Dev

Navbar on left of page, how to let content resize to match screen size?

From Dev

Navbar overlaps content in fixed-navigation bootstrap page when clicking links

From Dev

Content section overlap footer

From Dev

Getting a footer to stay at bottom of WINDOW (not page) & not overlap content

From Dev

Force page preloader to appear before any content

From Dev

How to achieve content overlap when expanding (collapsing) menu with navbar-static-top (similar to navbar-fixed-top behavior)

From Dev

Store content of next page after page navigation

From Dev

How to force background down whole page when content overflows?

From Dev

In page navigation being hidden by navbar

From Dev

Fixed navigation bar overlap issue

From Dev

Fixed navigation bar overlap issue

From Dev

Getting a footer to stay at bottom of WINDOW (not page) & not overlap content

From Dev

UITableView overlap cells (force)

From Dev

One page navigation blocking my content

From Dev

How to overlap navigation bar

From Dev

Jasny Bootstrap - offcanvas avoid push of the main page: how to force menu to overlap?

From Dev

How to overlap various content?

From Dev

navbar overflows (x) page content

From Dev

How to solve Navbar overlap with body content or other page in CSS

From Dev

navbar goes underneath the content on the page when the menu opens

From Dev

Upon falling, navbar goes under the content of the page

Related Related

  1. 1

    Dompdf default page header content overlap

  2. 2

    How to force background down whole page when content overflows?

  3. 3

    Page content is covered by navigation bar

  4. 4

    Force footer to the bottom of the page if no content is available

  5. 5

    Asp.net Master page navigation with content pages

  6. 6

    Bootstrap navbar-fixed-top hiding page content

  7. 7

    Put div below navigation bar and don't overlap content

  8. 8

    How to force report items to overlap?

  9. 9

    Navbar on left of page, how to let content resize to match screen size?

  10. 10

    Navbar overlaps content in fixed-navigation bootstrap page when clicking links

  11. 11

    Content section overlap footer

  12. 12

    Getting a footer to stay at bottom of WINDOW (not page) & not overlap content

  13. 13

    Force page preloader to appear before any content

  14. 14

    How to achieve content overlap when expanding (collapsing) menu with navbar-static-top (similar to navbar-fixed-top behavior)

  15. 15

    Store content of next page after page navigation

  16. 16

    How to force background down whole page when content overflows?

  17. 17

    In page navigation being hidden by navbar

  18. 18

    Fixed navigation bar overlap issue

  19. 19

    Fixed navigation bar overlap issue

  20. 20

    Getting a footer to stay at bottom of WINDOW (not page) & not overlap content

  21. 21

    UITableView overlap cells (force)

  22. 22

    One page navigation blocking my content

  23. 23

    How to overlap navigation bar

  24. 24

    Jasny Bootstrap - offcanvas avoid push of the main page: how to force menu to overlap?

  25. 25

    How to overlap various content?

  26. 26

    navbar overflows (x) page content

  27. 27

    How to solve Navbar overlap with body content or other page in CSS

  28. 28

    navbar goes underneath the content on the page when the menu opens

  29. 29

    Upon falling, navbar goes under the content of the page

HotTag

Archive