Plugin Author
PlanSo
(@planso)
Hi Birthe,
this sounds like your labels are styled differently within your theme.
In PlanSo Forms Pro you can add the following css code to the custom-css under the design tab:
.planso-form-builder label{font-weight:normal!important;}
Without pro you can achieve the same by placing the following code just above the PlanSo Forms shortcode:
<style type="text/css">
.planso-form-builder label{font-weight:normal!important;}
</style>
Please be sure to insert the above code in “text” mode.
Cheers
Dear PlanSo Plugin Author
Thanks very much. It works: the labels are now bold. However, the fields have different border colours – the first field (name) and the second field (email) have different border colours on
this page
How do I correct this?
Love
Birthe
Plugin Author
PlanSo
(@planso)
Hi Birthe,
please include the following style, too.
<style type="text/css">
input[type="text"], input[type="password"], input[type="email"], input[type="url"], textarea {
padding: 1.5%;
box-shadow: inset 1px 1px 5px rgba(0, 0, 0, .05);
background: #FCFCFC;
border: #EEE 1px solid;
color: #999;
font-family: "Droid Sans", sans-serif;
font-size: 13px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus {
background:#FFF;
border:#ddd 1px solid;
color:#333;
outline: none;
}
</style>
Cheers