Hi, I'm new at the shiny world.
I've done this:
---
title: 'Title'
runtime: shiny
output:
flexdashboard::flex_dashboard:
css: www/a.css
orientation: rows
---
I read that you can modified fonts, sizes and more through a CSS file. I would like to know how to apply a custom CSS. I've read that the CSS needs to be saved in a "www folder". But I don't understand what does that means. I have never posted an app, for now it's just in my computer.
The a.css file (and that is all it's name) is located in the same folder as the .Rmd file is, and have:
.chart-title {
font-size: 48px;
}
What do I have todo to apply the efects od the CSS? and what about the "www folder"? what is that? I don't know anything about html.
Thank you!!