I have been attempting to personalize my Stratus 2 Beta by implementing a custom theme. I created a separate CSS file named "stratus.css" and stored it in the CSS directory of my website - with the CSS code being identical to this example.
Below is my JavaScript code:
jQuery('body').stratus({
links: 'http://soundcloud.com/foofighters/sets/wasting-light',
theme: 'css/stratus.css'
});
While everything else is functioning correctly, the theme itself does not seem to be applying, instead inheriting the CSS properties from my website.
I attempted to add
<link href = "css/stratus.css" rel = "stylesheet">
to my HTML document, along with the necessary scripts
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="http://stratus.sc/stratus.js"></script>
However, none of these solutions seem to work.
If anyone has any suggestions on how to resolve this issue, please let me know!