• Resolved Birthe.Havmoeller

    (@birthehavmoeller)


    Hi!
    I hope that you can help me. The labels of my form are styled as ‘bold’ (default) when I look at the form in the PlanSo Form Builder (view) at the backend of my website. See this image: Screenshot 1
    But they are not ‘bold’ on the website see: Screenshot 2
    I take it that this is an style sheet error. Is it something which you can tell how me correct?

    See the page with the form which I think does not look as well styled as it should here

    / Birthe Havmoeller

    https://wordpress.org/plugins/planso-forms/

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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

    Thread Starter Birthe.Havmoeller

    (@birthehavmoeller)

    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

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Labels – CSS error?’ is closed to new replies.