Mitrichius / hugo-theme-anubis

Anubis is a simple minimalist theme for Hugo blog engine
https://hugo-theme-anubis.netlify.app/
MIT License
397 stars 152 forks source link

Is there any possibility to delete a dividing lines? #179

Closed konstvatruba closed 1 year ago

konstvatruba commented 1 year ago

Tried to search everything that looks like


or
, but didn't find the one I need. The theme is perfect, but the lines are really not that useful.

Cheers!

Mitrichius commented 1 year ago

Hi!

Create or update file assets/css/custom.css, add to it:

article:not(:last-of-type) {
    border: none;
}

.common-header {
    border: none;
}

.common-footer {
    border: none;
}