Skip to content
Discussion options

You must be logged in to vote

Of course! We have made no CSS limitations to create your own template. :)

  • to add a horizontal line under the main header (Header 1),
h1 {
  border-bottom: 1px solid #8aa6da;
}

https://web.dev/learn/css/borders/

  • to place a logo (png) in the bottom right corner (which is always in the corner, like paginate true).

There are several ways. Choose one according to your use case.

Place an inline image to the footer

<!-- footer: ![w:150](https://marp.app/assets/marp.svg) -->

<style>
footer {
  /* Unset default placing inherited from the built-in theme */
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;

  /* Place to right-bottom */
  right: 20px;
  bottom: 20px;
}
</style>

Ple…

Replies: 1 comment 7 replies

Comment options

You must be logged in to vote
7 replies
@mingyuecall
Comment options

@bilogic
Comment options

@yhatt
Comment options

@bilogic
Comment options

@yhatt
Comment options

yhatt Feb 1, 2026
Maintainer

Answer selected by yhatt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants