I have been struggling to customize the background of my slide deck using the 'slidify' package.
Actually, I could do it for the title slide by modifying the file 'slidify.css' though:
.title-slide {
/*background-color: #CBE7A5 */; /* #EDE0CF; ; #CA9F9D*/
background-image:url(C:/path/mypng.png);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
However I can't find how to do it for the 'standard' slides. I can use
--- bg:url(C:/path/mypng.png)
directly in my .Rmd file but I am unable to add the repeat and size options.
Does anyone have any tips on how to do it / where to add it within the CSS files?
Cheers,
r
tag. – Kilocycle