open-forest-observatory / ofo-website-3

MIT License
0 stars 0 forks source link

Left-align page titles of list pages #2

Open youngdjn opened 1 month ago

youngdjn commented 1 month ago

Presumably this just involves setting the list page layout to the same as the single-page layout, which uses left-alignment for titles

youngdjn commented 1 month ago

Actually the list page was already using the single-page layout (copied from Hugo Blox template repo). I also tried CSS to set it:

.article h1 {
    text-align: left;
}

But it didn't work well because the container for the title text is much wider than the body text so it appeared misaligned. Next step might be to see how the container of the body text is specified and see if it can be used for the page title too.