Created
October 3, 2012 16:06
-
-
Save ramseyp/3827867 to your computer and use it in GitHub Desktop.
CSS used to style Infusionsoft form labels as placeholders
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
/** | |
* Works with this Gist: https://gist.github.com/3827830 | |
*/ | |
/* Use this to add styles as necessary to override default form label styles */ | |
.infusion-form .infusion-field .label-placeholder { } | |
.infusion-form .infusion-field, | |
.infusion-form .infusion-field .inf_group { | |
position:relative; | |
} | |
.infusion-form .infusion-field .label-placeholder { | |
position:absolute; | |
top: 3px; | |
left: 5px; | |
font-size: inherit; | |
color: #888; | |
font-weight: normal; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Ramsey, I have a raw infusionsoft html and want to customize the fields/colors/etc. Will your .css work with this?
Thanks for posting btw. \m/