I had a look at a page source on the index.html as it comes up in the browser, and I see that your SSI is triggering a whole new HTML file inside the HTML head element. We need to move your SSI include line to the right place (in the <body>, not the <head> of your files), and we need to make the SSI file just hold the snip of code that belongs at the top of the <body>.
@JAG240 @achen298
I had a look at a page source on the index.html as it comes up in the browser, and I see that your SSI is triggering a whole new HTML file inside the HTML head element. We need to move your SSI include line to the right place (in the
<body>
, not the<head>
of your files), and we need to make the SSI file just hold the snip of code that belongs at the top of the<body>
. @JAG240 @achen298