Reputation: 123
Plugins are not loading the CSS files.
The CSS of the theme is loading just fine but the plugin CSS does not load.
If relevant, the website is: http://de.rundertisch.org/
Upvotes: 3
Views: 5250
Reputation: 25
I had a similar problem where the style did load but wasn't working correctly. I solved it by replacing:
<body>
with
<body <?php body_class(); ?>>
Upvotes: 0
Reputation: 123
wp_head(); was missing from header.php before
also don't forget wp_footer(); in footer.php before
Upvotes: 8