Headers Position in the Slide
If we need to change the position of the title in the slide, we should update the uab-rs.css
file. Currently, the styling for the header is h2 and by default all are aligned left.
- For example if we would like to make center, we need to apply a separate style for h2, we can add the below script in
uab-rc.css
.
.reveal h2 {
color: var(--uab-dragons-lair-green);
text-align: center;
}
- Then comment out or remove h2 from the existing code:
/* headers */
.reveal h1,
// .reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
color: var(--uab-dragons-lair-green);
}