Fixing the Home Icon
English 3844, Fall 2016
Traci Gardner
Slide text is licensed under CC-BY-SA 4.0.
Home icon from Font Awesome is licensed under SIL OFL 1.1
Internet Protocols
HTTP | HyperText Transfer Protocol |
HTTPS | HyperText Transfer Protocol Secure |
Secure protocols must match within a file to display.
For example, if you embed content (like a CSS file) on a page, it has to use a secure protocol.
See the Error!
Note the Home shows if you go to http://github.tracigardner.com/1-column-template/
But not if you go to https://github.tracigardner.com/1-column-template/
You can Inspect the page to see the error on the HTTPS version.
Fix the Error by Adding an S
Wherever there is a link to the Font Awesome stylesheet change http:// to https://
<link rel="stylesheet" id="font-awesome-css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css?ver=4.6.1" type="text/css" media="all" />
Pages You Will Need to Edit
Restoring the Icon
If you replaced the Home icon with the word "Home" or something similar, edit your navigation/menu.html file
Change�<li><a href="../index.html" target="_parent">Home</a></li>
to �<li><a href="../index.html" target="_parent">�<i class="fa fa-home fa-2x"></i></a></li>