CSS not working in Github Pages #137598
-
Select Topic AreaQuestion BodyGuys! can you help me out my website is not working properly in github pages. The CSS is not working. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Troubleshooting CSS Issues on GitHub Pages
If this helps, please mark as answer!😴 |
Beta Was this translation helpful? Give feedback.
-
@jasminehuelgas |
Beta Was this translation helpful? Give feedback.
-
Hi Jasmine Huelgas @jasminehuelgas , I look into the repo : https://github.com/jasminehuelgas/jasminehuelgas.github.io For the following file in lines 7 and 9, you have to put the s in http, like @ThisIs-Developer showed you. CSSline 7 to 9 : <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> Into <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> Note You can copy paste the change. |
Beta Was this translation helpful? Give feedback.
-
Answered in subsequent post: https://github.com/orgs/community/discussions/143525 |
Beta Was this translation helpful? Give feedback.
Answered in subsequent post: https://github.com/orgs/community/discussions/143525