Good Day,
I am trying to edit a contact form via the child theme.
The styles are not be inherited.
I have tried the Customiser/Custom CSS as well and the changes are not showing.
------------------------------ CSS TO BE OVER RIDDEN BY CHILD THEME ------------------------------
.caldera-grid .form-control {
width: 100%;
height: 34px;
padding: 6px 12px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
caldera-forms-f…?ver=1.5.7.1:1
.caldera-grid .form-control, .caldera-grid output {
font-size: 14px;
line-height: 1.42857143;
color: #555;
display: block;
------------------------------ CSS TO BE INHERITED ------------------------------
.caldera-grid .form-control {
width: 100%;
height: 50px;
padding: 6px 12px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 2px;
font-size: 19px;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
------------------------------ CSS DOUBLED INPUT BY CSS CUSTOMISER ------------------------------
.caldera-grid .form-control {
width: 100%;
height: 50px;
padding: 6px 12px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 2px;
font-size: 19px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
caldera-forms-f…?ver=1.5.7.1:1
.caldera-grid input {
line-height: normal;
I am using the latest version of WP & X Pro any help would be appreciated thank you.