Home > database >  Bootstrap4 togger not showing links when page resizes
Bootstrap4 togger not showing links when page resizes

Time:12-03

I have this bootsrap navBar, when i resize the window the navbar is shrunk and displays the hamburger, however when i click the hamburger the links aren't shown.

this is the code:

    <div class="fixed-top">
    <nav class="navbar navbar-dark navbar-expand-lg cusSticky" style="background-color: #000000b3;">
        <!-- Navbar content -->
        <div class="container-fluid">
            <a class="navbar-brand" href="{% url 'front:index' %}"><img class="image-responsive"
                                                                        src="{% static 'front/images/logo2.png' %}"
                                                                        alt="404"
                                                                        style="position: relative; max-width: 268px; margin-left:100px;"></a>

            <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar"
                    aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
                <span class="navbar-toggler-icon"></span>
            </button>

            <div class="collapse navbar-collapse" id="navbar">
                <ul class="navbar-nav mr-auto mt-2 mt-lg-0"
                    style="display: flex; margin-right: 50; margin-left:500px; text: white;">
                    <li class="nav-item active">
                        <a class="nav-link" href="{% url 'front:index' %}">Home</a>
                    </li>
                    <li class="nav-item active">
                        <a class="nav-link" href="{% url 'front:about' %}">About</a>
                    </li>
                    <li class="nav-item active">
                        <a class="nav-link"
                           href="{% url 'front:portfolio' %}">Portfolio</a>
                    </li>
                    <li class="nav-item active">
                        <a class="nav-link" href="{% url 'front:contact' %}">Contact</a>
                    </li>
                    <li class="nav-item active">
                        <a class="nav-link"
                           href="{% url 'front:calendar' %}">Calendar</a>
                    </li>
                    <li class="nav-item active">
                        <a class="nav-link" href="{% url 'user_area:loading'%}">
                            <i class="fa fa-user" aria-hidden="true"></i>
                            {% if user.is_authenticated %}
                            User Area - {{ user.first_name}}
                            {% else %}
                            Login
                            {% endif %}</a></li>
                </ul>
            </div>
        </div>
    </nav>
</div>

I feel like i am missing something but i can't figure it out.

CodePudding user response:

Instead of data-bs-toggle and data-bs-target use data-toggle and data-target.I solved your problem with the toggler, the rest is up to you... Work on your code! It leaves a lot to be desired ... ;-) Good Luck !

<!doctype html>
<html lang="en">

<head>
  <!-- Required meta tags -->
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

  <!-- Bootstrap CSS -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">

  <title>Bootstrap 4.6 Navbar with toggler</title>
</head>

<body>
  <div class="fixed-top">
    <nav class="navbar navbar-dark navbar-expand-lg cusSticky" style="background-color: #000000b3;">
      <!-- Navbar content -->
      <div class="container-fluid">
        <a class="navbar-brand" href="{% url 'front:index' %}"><img class="image-responsive" src="{% static 'front/images/logo2.png' %}" alt="404" style="position: relative; max-width: 268px; margin-left:100px;"></a>

        <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
          <span class="navbar-toggler-icon"></span>
        </button>


        <div class="collapse navbar-collapse" id="navbar">
          <ul class="navbar-nav mr-auto mt-2 mt-lg-0" style="display: flex; margin-right: 50; margin-left:500px; text: white;">
            <li class="nav-item active">
              <a class="nav-link" href="{% url 'front:index' %}">Home</a>
            </li>
            <li class="nav-item active">
              <a class="nav-link" href="{% url 'front:about' %}">About</a>
            </li>
            <li class="nav-item active">
              <a class="nav-link" href="{% url 'front:portfolio' %}">Portfolio</a>
            </li>
            <li class="nav-item active">
              <a class="nav-link" href="{% url 'front:contact' %}">Contact</a>
            </li>
            <li class="nav-item active">
              <a class="nav-link" href="{% url 'front:calendar' %}">Calendar</a>
            </li>
            <li class="nav-item active">
              <a class="nav-link" href="{% url 'user_area:loading'%}">
                <i class="fa fa-user" aria-hidden="true"></i> {% if user.is_authenticated %} User Area - {{ user.first_name}} {% else %} Login {% endif %}</a>
            </li>
          </ul>
        </div>
      </div>
    </nav>
  </div>

  <!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C OGpamoFVy38MVBnE IbbVYUew OrCXaRkfj" crossorigin="anonymous"></script>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>

</body>

</html>
<iframe name="sif1" sandbox="allow-forms allow-modals allow-scripts" frameborder="0"></iframe>

CodePudding user response:

It doesn't look as though you have any dropdown-menu's inside the main navbar-nav list. Copy this for as many dropdown's as you need.

<ul class="navbar-nav">

<!-- Dropdown Start -->

  <li class="nav-item dropdown">
    <a class="nav-link dropdown-toggle" href="#" id="servicesDropdown" role="button"         
    data-toggle="dropdown" aria-expanded="false">
        MAIN DROPDOWN BUTTON
    </a>
    <ul class="dropdown-menu" aria-labelledby="servicesDropdown">
        <li><a class="dropdown-item" href="#">DROPDOWN ITEM 1</a></li>
        <li><a class="dropdown-item" href="#">DROPDOWN ITEM 2</a></li>          
        <li><a class="dropdown-item" href="#">DROPDOWN ITEM 3</a></li>
        <li><a class="dropdown-item" href="#">DROPDOWN ITEM 4</a></li>
     </ul>
  </li>

<!-- Dropdown End -->

</ul>
  • Related