Gergely Mentsik
Gergely Mentsik

Reputation: 123

Wordpress Plugin - CSS not loading

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

Answers (2)

michaelvm
michaelvm

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

Gergely Mentsik
Gergely Mentsik

Reputation: 123

wp_head(); was missing from header.php before

also don't forget wp_footer(); in footer.php before

Upvotes: 8

Related Questions