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.
<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.
same for me, thanks. I just resolved the problem!
That was it. The path was wrong. I appreciate the help, all looks good now.
I just to give reference to this if you use
will not work as the stylesheet must be at root level like default.php you need to
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!
<?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!
You could use this as well: