Forums Forums Search & Filter Pro How to customize inner elements and format properly

Viewing 1 post (of 1 total)
  • Trevor
    #249779

    You will need to use custom CSS, such as:

    .searchandfilter[data-sf-form-id="8759"] ul {
      padding: 0;
    }
    .searchandfilter[data-sf-form-id="8759"] > ul {
      padding: 20px;
    }
    .searchandfilter[data-sf-form-id="8759"] .sf-date-prefix {
      min-width: 45px;
    }
    .searchandfilter[data-sf-form-id="8759"] h4 {
      color: green;
      /* font-size: 24px; */
      /* font-weight: 700; */
    }

    I have commented out two lines, to show how to change font size and weight. You could also change font here. This will give you some ideas I think, but if you need more help, can you tell me what specifically needs to change and to what?

    The fonts are all inherited from your theme.

Viewing 1 post (of 1 total)