Struggling with what should be a simple task. I have a website on Grav, utilizing a theme based on antimatter. The theme is mainly inherited and works perfectly fine.
My goal is to make some color adjustments, specifically altering the background color of the footer. It seems like a straightforward task. In themes\antimatter\scss\template
, I locate _footer.scss
containing background: $footer-bg;
, which appears to be the key. I find instances where $footer-bg
is defined in both _colors.scss
within the directories of scss configuration for the antimatter theme and my custom theme inheriting from it. After running scss --watch scss:css-compiled
on both themes, clearing the cache, and refreshing the page, the old background color persists.
Both of my _colors.scss
files contain:
$footer-bg: #c7254e;
(a reddish shade, but the display shows an outdated dark grey)
Seems like I've covered all bases, so what am I overlooking?
I even attempted adding this to mytheme\css\custom.css
:
footer {
background: white;
}
But unfortunately, no change occurred.
The version of Grav I'm using is v1.7.46, powered by PHP Version 8.1.2-1ubuntu2.17.