Created
November 17, 2022 08:55
-
-
Save flymke/a4c2e59be8e3184637d5e133b01537e7 to your computer and use it in GitHub Desktop.
SantaPress - Change Background, Fonts in Modal through CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change Background | |
.santapress-post.modal { | |
background:red !important; border:0 !important | |
} | |
// Change Font for <h1> Title | |
.santapress-post.modal h1.santapress-title { | |
font-family: arial, sans-serif !important; | |
} | |
// Change Font for <p> Text | |
.santapress-post.modal p { | |
font-family: arial, sans-serif !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment