Having trouble with JQM reading my CSS file
I am creating a mobile web using JQM and having problems reading themes and my custom CSS files. The documentation states to place the custom and Themes files prion to the JQM styles. When I rub my browser, the Theme does not show up and my CS file is not called.
When I place the Themes to the bottom of the stack, my Themes show up, however my CSS file is still not called. This thing is driving up a wall.
Here is how the calls are made:
HTML Code:
<link rel="stylesheet" href="styles/myStyles.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" href="themes/marrisPizza.min.css" />
the themes and CSS folders are located in the Root directory.
Can anyone please help!