Posts

Elementor Gravity form styling with custom css Code-1

Image
 In the Elementor pro to style the gravity form we just need to do some couple of lines of the css code.  Here you can add you custom css code. You can use this code to style you gravity form. selector .gform_title{     display: none !important; } selector input, selector textarea{     font-family: "Montserrat" !important;     font-size: 20px !important;     font-weight: 500 !important;     color: #313131 !important;     background-color: #B2B3B3 !important;     border: solid 1px #B2B3B3 !important;     border-radius: 0px;     padding: 29px 40px !important;     letter-spacing: .80px; } selector textarea{     min-block-size: 100px !important;   padding: 17px 40px !important; } selector input::placeholder, selector textarea::placeholder{     color: #313131; } selector .gform-theme--foundation .gform_fields {     grid-column-gap: 50px !import...