-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change position of logo in revealjs
slides
#809
Comments
revealjs
slides
There isn't currently a feature for this, but you can accomplish it by adding the following CSS block to your presentation: ```{=html}
<style type="text/css">
.reveal .slide-logo {
top: 0;
left: 12px
}
</style>
``` |
Thanks @jjallaire! - this is exactly what I was looking for. |
You could just include that same CSS in a styles.css file and then reference it with |
Would something like this (which I'm trying to hack from
I have to say that this does work and puts a file on every slide in the position I specify (and with the features I specify). The only thing I've not cracked yet is that, mainly because I don't really know what I'm doing (...), I can't exclude specific types of slides. For example, I have a title-slide class, which I have managed to make work and draw info from the yaml to produce a specific template/format for the first page of the presentation. I would also like to not include the logo on that slide (but the above doesn't work)... |
Can the logo be changed to a different part of the slides?
It would be great for users to have the ability to change the position of the logo in the slides. For example, I would like to have the logo on top left instead of bottom right (it interferes with controls if used in bottom right)
Quarto documentation shows how to add logo with the following code, but changing position is not mentioned:
The text was updated successfully, but these errors were encountered: