CSS Styles Not Working

Permalink
I'm making a custom theme for a client's website. I've searched the forums, and I've tried the suggested solutions, but I can't seem to get my theme to work.

Here is the code in my default.php's head:

<!DOCTYPE html>
<html>
<head>
   <?php
      Loader::element(‘header_required’);
   ?>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <link href="<?=$this->getStyleSheet(‘style.css’)?>" rel="stylesheet" type="text/css" />
</head>
<body>


This is my last attempt at getting this to work. I would very much appreciate if somebody was kind enough to help me figure out why this isn't working.

I've attached the theme's folder for reference.

1 Attachment

 
ThemeGuru replied on at Permalink Reply
ThemeGuru
Are you unable to actually load the css or...

Probably the best way is using the theme paths:

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


*You wont be able to use customized styles but if its just a custom site to begin with you won't have to worry about it.