My Spry Menu has been set up in INCLUDES but will not open in Browser

106 views Asked by At

this is my first but not my last question

I have my index.html but the drop down menus coded in SPRY will not open when on the server . The include folder is there in there are 2 files jps_bute_Spry1.shtml and jps_bute_Spry2.shtml

Here the code in the header

<!-- InstanceEndEditable -->
<link href="jps_bute_live.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<!-- include jQuery library -->
<script type="text/javascript" src="scripts/jquery-1.10.2.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="scripts/jquery.cycle.all.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
        $('.slideshow').cycle({
            fx: 'turnDown' // choose your transition type, ex: fade, scrollUp,shuffle,  etc...
        });
    });
</script>

And here the part in the body

 </div>
  <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="menu_container_panel_right" -->
  <div id="jps_bute_live_menu_container_right_panel">
    <!--#include file="includes/jps_bute_Spry1.shtml" -->
  </div>
  <!-- InstanceEndEditable --></div>
  <div id="jps_bute_live_main_top_body"></div>
  <div id="jps_bute_live_main_body_container"><!-- InstanceBeginEditable name="main_body_container_panel_left" -->
    <div id="jps_bute_live_main_body_container_left_panel">
      <!--#include file="includes/jps_bute_Spry2.shtml" -->
    </div>
  <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="main_body_panel_right" -->

I believe there is something missing that I am not seeing on the server Can anyone help in this matter?

Thx Ian

1

There are 1 answers

0
icmc On

I got the answer It was in htaccess. Some lines where missing to activate .shtml files in the include folder. I have added them and now it is working again.