I'm having a hard time understanding how the html is generated by Grav and the Solarize theme to fix an issue I'm having.
There are <style> tags before AND after the <title> tag.
The <style> tags below the <title> tag are links to theme .css files, while the <style> tags above the <title> are embedded actual css. I've tried to comment out the "list-style: none" attribute and it doesn't change the embedded style above the <title> tag so that my unordered lists are not getting decorated. I tried reading the .twig files but these embedded <style> lines are not there directly. but referred to in base.html.twig by a simple
{% block head %}
How do I change this behavior to what I want?
I'm having a hard time understanding how the html is generated by Grav and the Solarize theme to fix an issue I'm having.
There are <style> tags before AND after the <title> tag.
The <style> tags below the <title> tag are links to theme .css files, while the <style> tags above the <title> are embedded actual css. I've tried to comment out the "list-style: none" attribute and it doesn't change the embedded style above the <title> tag so that my unordered lists are not getting decorated. I tried reading the .twig files but these embedded <style> lines are not there directly. but referred to in base.html.twig by a simple
{% block head %}How do I change this behavior to what I want?