CSS not being displayed..just HTML

Permalink
I have an issue with a HTML/CSS theme I've installed. Everything went fine except I'm just getting a basic HTML layout. It's not picking up the CSS. Below is my edited code that was suggested in one of the updated discussions on the conversion to C5 video page:

<link href="<?php echo $this->getStyleSheet('css/styles.css')?>" rel="stylesheet" type="text/css" media="screen"/>

I got the images to show up, so that'll good. Any help would be greatly appreciated.

 
jelthure replied on at Permalink Reply
jelthure
if you view the source of the page in the browser, are the paths for your css files correct?

You could use this as well:
<link href="<?php echo $this->getThemePath(); ?>/css/styles.css" rel="stylesheet" type="text/css" media="screen" />
jenalu replied on at Permalink Reply
same for me, thanks. I just resolved the problem!
cskelton replied on at Permalink Reply
That was it. The path was wrong. I appreciate the help, all looks good now.
PauloCarvalhoDesign replied on at Permalink Reply
PauloCarvalhoDesign
I just to give reference to this if you use
<?php echo $this->getStyleSheet('css/styles.css')?>

will not work as the stylesheet must be at root level like default.php you need to
<?php echo $this->getStyleSheet('styles.css')?>

And that would work.
Also if your not using any editable styles dont use that method at all as it makes the whole process much slower!