Installed theme, but the CSS is not Connecting
Permalink
I have read the tutorial and watched the Video online (screencast) and I still am confused.
I installed a theme, and activated it, however the CSS is not loaded.
As per the screencast, i was told to change the Path:
<link rel="stylesheet" href="<?= $this->getThemePath();?>images/BrightSide.css" type="text/css" />
Did i miss something here? The CSS is not rendering and am assuming this is not being loaded because its not found.
UPDATE -
I fixed this myself. The issue was the missing SLASH (/) after the getThemePath()
Off to my next challenge, to make it editable.
I installed a theme, and activated it, however the CSS is not loaded.
As per the screencast, i was told to change the Path:
<link rel="stylesheet" href="<?= $this->getThemePath();?>images/BrightSide.css" type="text/css" />
Did i miss something here? The CSS is not rendering and am assuming this is not being loaded because its not found.
UPDATE -
I fixed this myself. The issue was the missing SLASH (/) after the getThemePath()
Off to my next challenge, to make it editable.
<?= $this->getThemePath()/;?>
DOH, should have checked this first before posting! Anyway yes it is the SLASH that is missing - if only I had REALLY thought about it!
If anyone else is having trouble, it should be:
<?= $this->getThemePath();?>/