File `____` not found. in main.less

Permalink
I'm trying to edit the Elemental theme by creating a copy, and I just end up creating more errors for myself. This is my newest error:

File `../../../css/build/core/include/mixins.less` not found. in main.less

 
MrKDilkington replied on at Permalink Best Answer Reply
MrKDilkington
Hi AJTD,

You have to change the path of the mixins.less import in main.less.

This is the path to main.less:
themes\elemental\css\main.less

In main.less change:
@import "../../../css/build/core/include/mixins.less";

to
@import "../../../../concrete/css/build/core/include/mixins.less";
AJTD replied on at Permalink Reply
Thank you! That fixed the problem. But now it gave me another one!

No grid framework found. Grid area methods require a valid grid framework defined in a PageTheme class.


All i'm trying to do is make a copy of the elemental theme so I can actually edit the CSS and stuff. ._.
MrKDilkington replied on at Permalink Reply
MrKDilkington
Do you have $pThemeGridFrameworkHandle set in your page_theme.php?

Example:
protected $pThemeGridFrameworkHandle = 'bootstrap3';
AJTD replied on at Permalink Reply 1 Attachment
Yes sir, I do. I'm not sure if its right however.

protected $pThemeGridFrameworkHandle = 'bootstrap3';


File attached.