Closed vickytnz closed 2 months ago
My crown footer wasn't showing on https://vickytnz.github.io/govuk-header-footer/ even when i set up the eleventy config file.
It turned out that in @x-govuk/govuk-eleventy-plugin/layouts/base.nkk
line 44
<link rel="stylesheet" href="/assets/govuk.css"> needs to be changed to <link rel="stylesheet" href="{{ '/assets/govuk.css' | canonicalUrl }}">
<link rel="stylesheet" href="/assets/govuk.css">
<link rel="stylesheet" href="{{ '/assets/govuk.css' | canonicalUrl }}">
After I changed this the CSS worked
My crown footer wasn't showing on https://vickytnz.github.io/govuk-header-footer/ even when i set up the eleventy config file.
It turned out that in @x-govuk/govuk-eleventy-plugin/layouts/base.nkk
line 44
<link rel="stylesheet" href="/assets/govuk.css">
needs to be changed to<link rel="stylesheet" href="{{ '/assets/govuk.css' | canonicalUrl }}">
After I changed this the CSS worked