Custom CSS (WordPress)

Uit De Vliegende Brigade
Versie door Jeroen Strompf (overleg | bijdragen) op 24 sep 2019 om 22:06 (Nieuwe pagina aangemaakt met 'Dat kan onder ''Customising'' (theme). Voorbeeld (sep. 2019): <pre> @media only screen and (max-width: 480px) { h1 { font-size: 2em!important;...')
(wijz) ← Oudere versie | Huidige versie (wijz) | Nieuwere versie → (wijz)
Naar navigatie springen Naar zoeken springen

Dat kan onder Customising (theme). Voorbeeld (sep. 2019):

@media only screen and (max-width: 480px) {
    h1 
    {
         font-size: 2em!important;
         line-height: 2em!important;
    }
    h2 
    {
         font-size: 1.8em!important;
         line-height: 1.8em!important;
    }
}