Finalizing Main and starting Character page#19
Conversation
|
Missing "characters.js" |
Moondancer83
left a comment
There was a problem hiding this comment.
Always run your code!
Use the browser's development tools to monitor the errors. If you use Chrome, (I hope you use it.) Press Ctrl + Shift + I to open it. Open Console tab.
| <title>List of characters</title> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | ||
| <link rel="stylesheet" href="Stil.css"> |
There was a problem hiding this comment.
You should include jquery before bootstrap.js!
Remove one of them, you included 2 different version of it!
| <link rel="stylesheet" href="Stil.css"> | ||
|
|
||
|
|
||
| <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> |
There was a problem hiding this comment.
Jquery must be declared before Bootstrap js!
|
|
||
| <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
| <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> |
There was a problem hiding this comment.
Remove older version of Bootstrap!
| <div class="collapse navbar-collapse" id="myNavbar"> | ||
| <ul class="nav navbar-nav"> | ||
| <li><a href="#">Home</a></li> | ||
| <li><a href="#"> <button>Characters</button></a></li> |
There was a problem hiding this comment.
Bootstrap uses anchors here, not buttons!
In addition your button is not working!
Define Characters instead!
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | ||
| <link rel="stylesheet" href="Stil.css"> |
There was a problem hiding this comment.
Please rename the Stil.css to some english word, like basic as this file is the basic sytlesheet.
| <title>ORCs Project</title> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> |
There was a problem hiding this comment.
Please use the same version of bootstrap for all files (css, js).
| <h1>Online Role-playing Characters</h1> | ||
|
|
||
|
|
||
|
|
There was a problem hiding this comment.
Please remove the original content of the file. Use your new content only.
No description provided.