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.

 
thewebshop replied on at Permalink Reply
thewebshop
So you fixed it by adding a SLASH like this:

<?= $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();?>/
tbahz replied on at Permalink Reply
No, after!

From this...
<img src="images/blank.gif">


To this with Concrete5
<img src="<?PHP $this->getThemePath()?>/images/blank.gif">