I would like to know if this can be done in Quarto presentation: Imagine you have two logos: logo1.png and logo2.png. The objective is using logo1.png in one slide and logo2.png in other slide, in addition I want to have a third slide with no logo at all. This is requested due to the slide backgrounds used to separate sections of the presentation. In that sense, is it possible to achieve this?
At this moment, I have tried this:
# About me {background-color="black" .no-logo}
or
# About me {background-color="black"} {.no-logo}
with an logo.css like this:
.reveal .slide-logo .no-logo {
display: none !important;
}
section#no-logo {
display: none !important;
}
Neither gave me any result. Any comment will be highly appreciated.
Warm regards