Custom CSS per singola sezione
Usa il carattere jolly *
nel campo css_custom
per indicare la sezione
Ad esempio questa sezione usa le impostazioni seguenti:
* {background: #000} * h2 {color: #fff} * p {color: #eee} * pre {color: #f88} @media (min-width: 992px) { * .container{ max-width: 50%; margin: 0 auto; } }
CSS risultante:
#section-226 {background: #000} #section-226 h2 {color: #fff} #section-226 p {color: #eee} #section-226 pre {color: #f88} @media (min-width: 992px) { #section-226 .container{ max-width: 50%; margin: 0 auto; } }