I'm trying to insert a js snippet right after the head tag on the template.master file. The way that the site renders, it overlooks the script and places the css files before the script. How can I get this to come before.
This is the code from the template master:
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<!-- MOBIFY - DO NOT ALTER - PASTE IMMEDIATELY AFTER OPENING HEAD TAG -->
<script type="text/javascript">/SCRIPT HERE</script>
<!-- END MOBIFY -->
This is how the page gets created
<head id="ctl00_Head1"><link href="App_Themes/Skin_2/lightbox.css" type="text/css" rel="stylesheet" /><link href="App_Themes/Skin_2/prettyPhoto.css" type="text/css" rel="stylesheet" /><link href="App_Themes/Skin_2/reset.css" type="text/css" rel="stylesheet" /><link href="App_Themes/Skin_2/style.css" type="text/css" rel="stylesheet" /><link href="App_Themes/Skin_2/stylequirk.css" type="text/css" rel="stylesheet" />
<!-- MOBIFY - DO NOT ALTER - PASTE IMMEDIATELY AFTER OPENING HEAD TAG -->
<script type="text/javascript">/</script>
<!-- END MOBIFY -->