How do I properly add logos to the top of the title slide?
After some trial and error, I came up with this which I add to the css file.
.title-slide.remark-slide-content:before{
position: absolute;
content:url(logo.svg);
height:60px;
}
This seems to work for one logo and it's positioned on the top right. I would like to add another logo on the top left too. Is there a better way to do this?