Skip to content
Discussion options

You must be logged in to vote

You can take a very similar approach with Quarto! Rather than .remark-slide-content in your custom CSS file, use .reveal .footer > *.

Example .qmd file:

---
title: "Your title goes here"
format: 
  revealjs:
    footer: "Footer text goes here"
    menu: false
editor: visual
css: style.css
---

## This is a slide title

This is some text.

In the style.css file:

.reveal .footer > * {
	background-color: #006682;
	color: white;
}

This produces the following:

Replies: 2 comments 4 replies

Comment options

You must be logged in to vote
1 reply
@matt-dray
Comment options

Answer selected by matt-dray
Comment options

You must be logged in to vote
3 replies
@mcanouil
Comment options

@thebigdalt
Comment options

@mcanouil
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
revealjs Issues with the revealjs format themes Related to HTML theming or any other style related issue (like highlight-style)
4 participants