Forums Forums Search & Filter Pro Search by date for ancient documents

Viewing 8 posts - 51 through 58 (of 58 total)
  • Trevor
    #185805

    Is it still there? In the Custom Css of WPBakery?

    I am not sure that is a good place to put it. There is a plugin called Simple Custom CSS and JS:

    https://wordpress.org/plugins/custom-css-js/

    Anonymous
    #185850

    In this plugin the code works, thank you! But, still, the color of the placeholder text in the first and last field has not changed. And I would like to remove the left margin in all form. Sorry for the persistence, and thanks again.

    Trevor
    #185864

    The placeholder text is always faded, otherwise it is the same color. as for the padding, I presume you mean inside the boxes?

    .searchandfilter input[type="text"],
    .searchandfilter input[type="date"],
    .searchandfilter select {
      padding: 0;
    }

    Or set it to a small number. It was your theme adding this.

    Anonymous
    #185880
    This reply has been marked as private.
    Trevor
    #185892

    I think this removes the fade:

    ::-moz-placeholder {
      opacity: 1;
    }

    And this to override your theme left margin CSS:

    .content .searchandfilter > ul {
        margin: 0 0 10px 0;
    }
    Anonymous
    #185900

    ::-moz-placeholder {
    opacity: 1;
    }

    Unfortunately, I did not see any changes

    .content .searchandfilter > ul {
    margin: 0 0 10px 0;
    }

    It works, thank You!

    Trevor
    #185902

    The placeholder thing is set by the browser. That fix works for Firefox I think, so you would need to search Google for a solution to that.

    Anonymous
    #185911

    Okay, Trevor, I’ll look for a solution on my own. Thank you a lot, I couldn’t have done it without your help.

Viewing 8 posts - 51 through 58 (of 58 total)