Trying to customize Anubis theme, can't find what should I modify

Hello everyone,

First, I want to say that Anubis is one of the best themes I saw on web for a personal website. But, unfortunately, there’s something I can’t understand how to customize: the lines at the main page between the posts.

I’ve tried to check many different files but didn’t found any <hr> or <div> lines at the code at all. For example, layouts/_default/list.html file says just this:

{{ define "main" }}
{{ .Content }}
**{{ i18n .Title }}**
{{ $pages := where (where .Pages "Type" "in" site.Params.mainSections) "Params.hidden" "!=" true}} {{ range $pages }}
[**{{ trim .Title " " }}**](file:///Users/username/Downloads/hugo-theme-anubis-main%202/layouts/_default/%7B%7B%20.RelPermalink%20%7D%7D)
{{ partial "post-language-switcher.html" . }}
{{ partial "post-info.html" . }}
{{ end }}
{{ end }}

Any idea how could I delete these lines?

Looks like you have already reached out to the theme author:
https://github.com/Mitrichius/hugo-theme-anubis/issues/179

The border is defined in CSS:
https://github.com/Mitrichius/hugo-theme-anubis/blob/main/assets/css/main.css#L340

See the theme’s README to learn how to override the default CSS:
https://github.com/Mitrichius/hugo-theme-anubis/#update-config-file

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.