Forums Forums Search & Filter Pro CSS RULES

Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Anonymous
    #234681

    having this code : ( Trevor has created this to solve a form problem )

    .searchandfilter[data-sf-form-id=”1146″] select.sf-input-range-select {
    border: 1px solid #aaa;
    padding: 2px 0;
    border-radius: 4px;
    }
    .searchandfilter[data-sf-form-id=”1146″] > ul > li:first-child {
    margin-left: 0;
    }
    .searchandfilter[data-sf-form-id=”1146″] > ul > li {
    margin-left: 25px;
    float:left;
    }
    .searchandfilter[data-sf-form-id=”1146″] {
    background: #fff;
    float: left;
    width: 100%;
    }
    .searchandfilter[data-sf-form-id=”1146″] h4 {
    color: black;
    font-family: “Montserrat”, Sans-serif;
    font-size: 18px
    }
    .searchandfilter[data-sf-form-id=”1146″] select,
    .searchandfilter[data-sf-form-id=”1146″] .select2-container .select2-results__option,
    .searchandfilter[data-sf-form-id=”1146″] .select2-container–default .select2-selection–single .select2-selection__rendered {
    color: black;
    font-family: “Montserrat”, Sans-serif;
    font-size: 14px;
    }
    .searchandfilter[data-sf-form-id=”1146″] .select2-container {
    min-width: 230px;
    }
    .searchandfilter[data-sf-form-id=”1146″] > ul {
    display: table;
    margin: 0 auto;
    }

    how can i separate the font and color for LAbel and text in field and how to have the label in bold style ?

    i think that i’ve to manage the portion :

    .searchandfilter[data-sf-form-id=”1146″] h4 {
    color: black;
    font-family: “Montserrat”, Sans-serif;
    font-size: 18px
    }

    but also inserting the riles –> { font-weight: bold; } it do not change and i do not see where to distinguis label from filed.

    Can you help me ?

    Anonymous
    #234682

    Solved adding

    so :

    .searchandfilter[data-sf-form-id=”1146″] h4 {
    color: black;
    font-family: “Montserrat”, Sans-serif;
    font-size: 18px;
    font-weight:600
    }

    Ticket can be closed

    Trevor
    #234703

    Thanks for letting me know. I will close this thread for now.

Viewing 3 posts - 1 through 3 (of 3 total)