no, that’s not it, there are 6 stylesheets linked to in the markup, whooami…
It is something caused by your javascripts
I got it to work by rearranging your css links (which I also changed to @import
s, not sure if that made a difference, but it shouldn’t have, except perhaps to netscape) such that your js was after the css links.
Like so:
<style type="text/css">
@import url("https://cspencerbeggs.com/wordpress/wp-content/plugins/contactforms/cforms.css");
@import url("https://cspencerbeggs.com/wordpress/wp-content/themes/k2/dd-multi-col-cats.css");
@import url("https://cspencerbeggs.com/wordpress/wp-content/themes/k2/style.css");
@import url("https://cspencerbeggs.com/wordpress/wp-content/themes/k2/css/print.css");
@import url("https://cspencerbeggs.com/wordpress/wp-content/themes/k2/css/rollingarchives.css");
@import url("https://cspencerbeggs.com/wordpress/wp-content/themes/k2/styles/kutline/styles.css");
</style>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/prototype.js.php?ver=1.5.0'></script>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/effects.js.php?ver=1.7.0'></script>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/k2functions.js.php?ver=223'></script>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/slider.js.php?ver=1.7.0'></script>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/trimmer.js.php?ver=247'></script>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/rollingarchives.js.php?ver=224'></script>
<script type='text/javascript' src='https://cspencerbeggs.com/wordpress/wp-content/themes/k2/js/livesearch.js.php?ver=262'></script>
<script type="text/javascript" src="https://cspencerbeggs.com/wordpress/wp-content/plugins/contactforms/js/cforms.js"></script>
However, with this fix some components are missing… but it’s a start.
btw, your styles were also not showing in IE7
Good luck.
– John