This is a wip, the navbar’s dropdown no longer work Could anyone see where I broke it?
Run it trough html validator, tried rebuilding it several times. And it is built w/bootstrap.
http://danielamorescalchi.com/testarea1/apd/index.php
Thx
D
This is a wip, the navbar’s dropdown no longer work Could anyone see where I broke it?
Run it trough html validator, tried rebuilding it several times. And it is built w/bootstrap.
http://danielamorescalchi.com/testarea1/apd/index.php
Thx
D
It appears as though you are including some javascript and css files twice. No doubt the browser gets most confused so would tend to remove the duplicates:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>apd</title>
<meta name="viewport" content="width-device-width, initial-scale-1.0">
<meta name="description" content="apd">
<meta name="author" content="apd">
<script src="[js/jquery-1.11.1.min.js](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/js/jquery-1.11.1.min.js)"></script>
<script src="[js/bootstrap.min.js](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/js/bootstrap.min.js)"></script>
<link rel="stylesheet" href="[css/bootstrap.css](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/css/bootstrap.css)">
<link rel="stylesheet" href="[style.css](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/style.css)">
<meta name="viewport" content="width-device-width, initial-scale-1.0">
<script src="[js/jquery-1.11.1.min.js](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/js/jquery-1.11.1.min.js)"></script>
<script src="[js/bootstrap.min.js](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/js/bootstrap.min.js)"></script>
<link rel="stylesheet" href="[css/bootstrap.css](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/css/bootstrap.css)">
<link rel="stylesheet" href="[style.css](http://www.sitepoint.com/forums/view-source:http://danielamorescalchi.com/testarea1/apd/style.css)">
</head>
John, Thank you for catching that. I wonder why validator gave me a green flag.
Thanks!
that fixed it!
D