Theme installation
Permalink
I've tried installing my theme in the main /themes directory. I've uploaded it to the correct folder, but when I activate it from the Dashboard, C5 tries to read it from the /concrete/themes directory.
Any idea why this is happening?
EDIT: My stylesheet links are:
Any idea why this is happening?
EDIT: My stylesheet links are:
<link href="<?php echo $this->getThemePath()?>/css/styles.css" rel="stylesheet">

what does the file structure look like in your theme folder?
I have all of my files in the root/themes directory. All of my css is in a root/theme_name/css directory as well as my javascript in a root/theme_name/js directory.
Screen cap of my folder structure attached.
Hmm. You would think that would work, although, I've never tried it that way. I always wrap my themes into a package. The few times I've run into similar issues was due to something like a typo in a class name etc... You may want to consider making it a package and see the outcome ?!
Figured it out. Had a syntax error in my view.php file.
Good deal!