Looking at your code, it looks like this is the code you're using to pull in the stylesheets:
Code:
<style type="text/css">
/* Helper */
@import "css_nc_professional_photographers/header.helper.css"; /* Layout */
@import "css_nc_professional_photographers/header.dropdown.css";
/* Theme */
@import "css_nc_professional_photographers/header.default.advanced.css";
</style>
Try replacing it with this:
Code:
<style type="text/css">
/* Helper */
@import url("/css_nc_professional_photographers/header.helper.css"); /* Layout */
@import url("/css_nc_professional_photographers/header.dropdown.css");
/* Theme */
@import url("/css_nc_professional_photographers/header.default.advanced.css");
</style>
In CSS, when you use @import you also have to use url("...") around the URL or else it won't work.
__________________
Please login or register to view this content. Registration is FREE
I solve code problems, browser compatibility (including IE 6), Wordpress trouble, the works.
|