Icon Bar is not working again

  • Thread starter Thread starter Donald Uko
  • Start date Start date
D

Donald Uko

Guest
I recently created a website using ASP.NET and bootstrap. At first, the icon bar was responsive when i minimize the screen; it displayed the list items on the navigation bar. But after a few days, I discovered that the icon bar is no more responding; its not displaying the navigation list items when i click the icon bar. I have included the code which i used, including the javascript code. What should I do?

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Joscheck Home</title>

<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/StyleSheet.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body style=" background-color:#DCDCDC; background-image:url('images/Dox.png')">
<form id="form1" runat="server">
<div>
<div class="navbar navbar-default navbar-inverse navbar-fixed-top" role="navigation" style="background-color:#200662; font-family:Nunito;">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse" style="background-color:#200662;color:white">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="Homepage.aspx"></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="Homepage.aspx" style="color: #FFFFFF">Home</a></li>
<li><a href="#" style="color: #FFFFFF">About Us</a></li>
<li><a href="#" style="color: #FFFFFF">Contact</a></li>
<li><a href="SignIn.aspx"style="color: #FFFFFF">Login/Register</a></li>
</ul>
</div>
</div>
</div>
</div>
</form>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>

Continue reading...
 

Similar threads

D
Replies
0
Views
97
Donald Uko
D
D
Replies
0
Views
101
Donald Uko
D
A
Replies
0
Views
158
ANIL AYDINALP
A
A
Replies
0
Views
110
Abdurrahman Nurhakim
A
M
Replies
0
Views
147
MacBaze
M
Back
Top