Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search Search Results for 'data-sf-form-id'

Viewing 10 results - 61 through 70 (of 189 total)
  • Author
    Search Results
  • #255932

    Trevor
    Moderator

    The code needed to make it 100% wide is a modification of what you already have, this bit:

    .searchandfilter[data-sf-form-id=”2703″] li.sf-field-search input,
    .searchandfilter[data-sf-form-id=”2703″] li.sf-field-search label,
    .searchandfilter[data-sf-form-id=”2703″] .select2-container {
    min-width: 100%;
    }

    Needs to be:

    .searchandfilter[data-sf-form-id="2703"] li.sf-field-search input,
    .searchandfilter[data-sf-form-id="2703"] li.sf-field-search label,
    .searchandfilter[data-sf-form-id="2703"] li[data-sf-field-input-type="select"] .select2-container,
    .searchandfilter[data-sf-form-id="2703"] li[data-sf-field-input-type="select"] label {
      min-width: 100% !important;
      width: 100% !important;
    }

    You have set the font in some places in your code to black, e.g.:

    .searchandfilter[data-sf-form-id=”2703″] .select2-container, .select2-container–open {
    font-size: 14px;
    color: #000;
    }

    It is here that the font and font color may need to be set.

    #255784

    Inventflow B.V.
    Participant
    This reply has been marked as private.
    #255779

    Trevor
    Moderator

    To remove the search box on the fields, change them back to normal dropdown selects, and see this post (some of the suggestions I think you have done already):

    https://support.searchandfilter.com/forums/topic/css-dropdown-option-active-hover/#post-249903

    As to the font color, there should be some CSS snippets in this forum search that will help you:

    https://support.searchandfilter.com/forums/search/searchandfilter+data-sf-form-id+color+select2/

    I am not sure what you mean by “I would also like the arrow like I have right now instead of the ‘plus’ and ‘minus’ signs.” You already have dropdown arrows?

    #255534

    In reply to: Problems


    Trevor
    Moderator

    This Custom CSS should improve the layout:

    .searchandfilter[data-sf-form-id="421"] ul {
        padding-left: 0;
    }
    .searchandfilter[data-sf-form-id="421"] .sf-range-max,
    .searchandfilter[data-sf-form-id="421"] .sf-range-min {
        max-width: 110px;
    }
    #255492

    In reply to: Mobile Width Css Help


    Trevor
    Moderator

    Try adding this additional CSS:

    .searchandfilter[data-sf-form-id="6646"] select.sf-input-select {
        min-width: auto;
    }
    .searchandfilter[data-sf-form-id="6646"] li.sf-field-search input,
    .searchandfilter[data-sf-form-id="6646"] li.sf-field-search label,
    .searchandfilter[data-sf-form-id="6646"] .select2-container {
      max-width: 100%;
    }
    #255348

    In reply to: Mobile Width Css Help


    Trevor
    Moderator

    That CSS looks wrong. The first bit of code you appear to need is this:

    .searchandfilter[data-sf-form-id="6646"] ul {
      padding-left: 0;
    }

    The CSS you gave me should surely be max-width, not min-width, if it is for mobile only?

    And it is missing a pair of curly braces:

    @media (min-width: 600px) {
      .searchandfilter[data-sf-form-id="6646"] {
        min-width: 50px;
      }
    }

    Can you show me one or more annotated screenshot(s) of the design change(s) you want? If you can do that, you would need to upload the screenshot image(s) to a file sharing site (like the WordPress Cloudup site) and share the link with me?

    #254999

    Trevor
    Moderator

    I think this custom CSS makes it look better?

    .searchandfilter[data-sf-form-id="5450"] {
      padding: 20px;
    }
    .searchandfilter[data-sf-form-id="5450"] > ul {
      margin: 0;
    }
    .searchandfilter[data-sf-form-id="5450"] li.sf-field-search input,
    .searchandfilter[data-sf-form-id="5450"] li.sf-field-search label,
    .searchandfilter[data-sf-form-id="5450"] li[data-sf-field-input-type="select"] label,
    .searchandfilter[data-sf-form-id="5450"] li[data-sf-field-input-type="select"] select,
    .searchandfilter[data-sf-form-id="5450"] li[data-sf-field-input-type="daterange"] label,
    .searchandfilter[data-sf-form-id="5450"] .select2-container {
      min-width: 100%;
    }
    #254178

    Trevor
    Moderator

    To make the form Horizontal, see here:

    https://searchandfilter.com/documentation/getting-started/display-search-form/#making-your-search-form-horizontal

    There are many other customising snippets in the forums:

    https://support.searchandfilter.com/forums/search/searchandfilter+data-sf-form-id/

    That code you tried will likely not work. Are you able to send me a live link/URL to your search page so I can take a look?

    #253995

    Trevor
    Moderator
    #253488

    In reply to: Style Codes


    Trevor
    Moderator

    Is it OK to close this thread for now? If you do this forum search, you will find tons of snippets:

    https://support.searchandfilter.com/forums/search/searchandfilter+data-sf-form-id/

Viewing 10 results - 61 through 70 (of 189 total)