• Resolved hirma

    (@hirma)


    Hi. I want to use my default template. But the input boxes have an other sty then the calculated boxes. Is it possible to fix this?

    Regards Martin

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @hirma,

    The styles applied to the calculated fields are not being defined by our plugin, their appearance are defined through the styles:

    
    .sec-border, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea {
        border: 2px solid #eeeeee;
    }
    

    in your webpage, and the following style definition in to the “https://martin-hirsch.com/wp-content/themes/oshin/css/main.css” file:

    
    input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
           padding: 0px;
           width: 100%;
           margin-bottom: 20px;
           border: none;
           text-indent: 10px;
           font-size: inherit;
           color: inherit ;
           font: inherit ;
           line-height: 20px;
           height:41px;
           -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
           box-sizing: border-box;
       }
    

    but as you can see, none of them are considering the input tags with type="number"

    There are two solutions, editing your current styles to take into account the selector:

    
    input[type="number"]
    

    or you can enter the following style definition into the attribute: “Customize Form Design” in the “Form Settings” tab (https://cff.dwbooster.com/images/documentation/form-settings-tab.png)

    
    #fbuilder input[type="number"]{
           border: 2px solid #eeeeee;
           padding: 0px;
           width: 100%;
           margin-bottom: 20px;
           text-indent: 10px;
           font-size: inherit;
           color: inherit ;
           font: inherit ;
           line-height: 20px;
           height:41px;
           -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
           box-sizing: border-box;
       }
    

    Best regards.

    Thread Starter hirma

    (@hirma)

    Hi. Thanks for the fast repsonse. I tried both versions, but nothing happened. If you wan’t to have a look, in the moment i used the second version with your design settings.

    Regards Martin

    Thread Starter hirma

    (@hirma)

    Hi. Sorry – it works fine ?? And i’m a dump ??

    Thank you very much ??

    Regards Martin

    Plugin Author codepeople

    (@codepeople)

    Hi @hirma,

    It has been a pleasure to help you.

    Best regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Style of field ‘Number’’ is closed to new replies.