I am trying to create an R presentation (.Rpres) using RStudio 0.98.1028 with a different background image on the header slide and a different background image on the rest of the slides. I can place my own background (foo.png) by creating a css file in it:
body { background-image: url(foo.png); background-position: center center; background-attachment: fixed; background-repeat: no-repeat; background-size: 100% 100%; }
I managed to disable the default color scheme on the title slide and make the color black with this:
.section .reveal .state-background { background: transparent;} .section .reveal h1, .section .reveal p { color: black; }
To get foo1.png in the header slide, Other posts ( Adding an image to the slide with slidify ) I saw a suggestion to add this to css:
.title-slide { background-image: url(foo1.png); }
Which does not embed foo1.png. However, foo.png remains on all slides (including the title slide). How do I get foo1.png on my title slide?
source share