-
DescriptionIn a quarto presentation, I'd like to display the author's name and date at the bottom of each slide. I've added this to my CSS, but it only works on the first page of my revealjs presentation. p.date{
font-size: 65%;
position: absolute;
bottom: -3%;
right: 0%;
}
.quarto-title-author-name {
font-size: 65%;
position: absolute;
bottom: -3%;
left: 0%;
} Any idea ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is a not a revealjs feature to have this set on all slides, and only Quarto feature close enough is to use footer. Maybe it can help. Otherwise, you may use Lua filter or JS script (with RevealJS hooks ?) to be able to modify all your slides and add the necessary content you want where you want. Using CSS will only modify the |
Beta Was this translation helpful? Give feedback.
-
Ok thanks a lot @cderv for this explanation ! Maybe I'll try with a footer.... |
Beta Was this translation helpful? Give feedback.
This is a not a revealjs feature to have this set on all slides, and only Quarto feature close enough is to use footer. Maybe it can help.
Otherwise, you may use Lua filter or JS script (with RevealJS hooks ?) to be able to modify all your slides and add the necessary content you want where you want.
Using CSS will only modify the
.date
and.quarto-title-author-name
on the slides where the content is present. You need a way to duplicate it.