Please describe what’s not working with the WoW theme installation.
First you need to create a plugin file (that’s a PHP file which goes to plugins folder of administrator/components/com_raidplanner)
That plugin file will loads the CSS file (call it guildwars2.php , and should looks like this:
<?php
defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
class RaidPlannerPluginGuildWars2 extends RaidPlannerPlugin {
public function loadCSS() {
JHTML::stylesheet(‘raidplanner_gw2.css’, ‘images/raidplanner/css/’ );
return true;
}
}
Once you have this file, you can add a raidplanner_gw2.css file into images/raidplanner/css directory.