concrete-ize my HTML theme: style sheet not found

Permalink
Hello,

I am following the tutorial on Vimeo about concrete-izing a basic HTML theme, replacing
<link href="sample9.css" rel="stylesheet" type="text/css" />

with
<link href="<?=$this->getThemePath()?>sample9.css" rel="stylesheet" type="text/css" />


Styles don't show at all, though everything is on my test server.
Searched the forum, but don't find a hint.
My theme is in the root/themes folder, shows in the themes list, is installed and activated.
Any ideas?

Thanks!

 
adamjohnson replied on at Permalink Best Answer Reply
adamjohnson
You need to add a slash in between the theme path and your stylesheet, like so:

<link href="<?=$this->getThemePath()?>/sample9.css" rel="stylesheet" type="text/css" />


The key character being the "/".

Hope that helps.
Sumukha replied on at Permalink Reply
That made it.
Thanks!