Created
May 21, 2025 12:01
-
-
Save gicolek/608da6bf6cca1e90f17a50e6d42dd033 to your computer and use it in GitHub Desktop.
Contact Form 7 Template Yellow
This file contains hidden or 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
/** this part of the code makes the background of our template yellow **/ | |
.c-custom-template-wrap--yellow .wpcf7-form-control-wrap input, | |
.c-custom-template-wrap--yellow .wpcf7-form-control-wrap textarea, | |
.c-custom-template-wrap--yellow .wpcf7-submit { | |
background-color: #ffffd5; | |
color: black; | |
} | |
/** this part of the code, divides the HTML elements into two groups **/ | |
.c-custom-template-wrap .c-custom-template { | |
display: grid; | |
grid-template-columns: auto auto; | |
grid-gap: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment