Installed the excellent Notepad grav skeleton and wanted some theme changes. I’ve done some grav before, but these hints might help someone
see Selgovae for my work in progress blog.
Home Page text
First finding, the home page text comes from the /user/config/site.yaml
or the grav admin pages, that took me a while!
Theme colour
There is no config for theme colour, so it needs a change to the css in /user/themes/notepad/css/
. I edited both styleb146.css
and postb146.css
to change the red e51843
to a brown #8b4513
Home Page background
Nothing I could find in the theme, so I dropped my image into the css folder and edited styleb146.css
again. Change the summer-site-head-content
section
I could not find another way to ‘inject’ into the home page
.summer-site-head .summer-site-head-content {
width: 100%;
text-align: center;
background-color: black;
background-image: url("YOUR-IMAGE.png");
background-size: cover; }
Remove feed from navigation
Feed on the menu was an annoyance; could not find it in the navigation setup, because it was coded in the twig template /user/themes/templates/partials/navigation.html.twig
so I commented the entry
<!-- <li><a href="{{ base_url }}/blog.rss" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a></li> -->