I am looking to customize the appearance of the initial title page that appears when converting my Rmd file to html ioslides. The current header in my test Rmd file looks like this:
---
title: This test
subtitle: that test
author: jake
output:
ioslides_presentation:
incremental: true
css: myCss4.css
---
My goal is to center the title text (which defaults to the lower left corner) and make changes to the color and font size. While I was able to adjust the color and font size successfully, I have been unable to modify the position of the text...
Here is the custom CSS code I have attempted:
slides > slide.title-slide hgroup h1 {
font-weight: bold;
font-size: 24pt;
color:red;
bottom: 50%;
}
I've experimented with properties like bottom:50%, top=50%, and others with no luck... The location of the title text remains unchanged. What should I do differently in my code? Or is there a better alternative to using CSS for this customization?