Tim Wilcox
Tim Wilcox

Reputation: 1331

Using CSS to customize ioslides in R

To begin with, I am just using the default ioslides presentation in R. At the moment, trying to figure out how to accomplish 3 items

  1. Make the space between the header and the text smaller.
  2. How to decrease the font size in the body
  3. How to decrease font size in the header

As of yet, this is my attempt. No errors but nothing has changed. I am under the impression that ## equates to h2. Am I incorrect?

Any ideas on how to do this?

 h2{
font-family:'Arial';
font-size:'10';
padding-bottom:1px;
}

body{
font-family:'Arial';
font size:'8';
}

Upvotes: 1

Views: 240

Answers (1)

Umut Kalaycı
Umut Kalaycı

Reputation: 36

1.Question: I did'nt understand

2.Question

body{
font-size:8px;
}

3.Question:

    h2{
font-size:10px;
}

Upvotes: 1

Related Questions