Last active
February 26, 2024 21:41
-
-
Save cliffordp/95dd05de071dd8f8ce0c73625ff7106d to your computer and use it in GitHub Desktop.
GHL website custom CSS via Custom Values
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
<style> | |
/* Video: https://youtu.be/u39v1o6iqc0 */ | |
/* Code Source: https://gist.github.com/cliffordp/95dd05de071dd8f8ce0c73625ff7106d */ | |
/* Buttons */ | |
div[class*='button-'] a[class*='btn-'] { | |
background-color: {{custom_values.color_secondary}}; | |
} | |
/* H1s */ | |
div[class^='heading-'] h1 em, | |
div[class^='heading-'] h1 strong, | |
div[class^='heading-'] h1 u { | |
color: {{custom_values.color_primary}} !important; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment