Forums › Forums › Search & Filter Pro › Search by date for ancient documents
- This topic has 57 replies, 2 voices, and was last updated 6 years, 3 months ago by Anonymous.
-
Anonymous(Private) August 10, 2018 at 5:30 pm #185188
> Did you try changing WordPress to Russian?
I switched to Russian – now everything is OK!
> For the CSS, I think it will be easier of you make annotated screenshots and give me a link to where there are stored online (you cannot upload them here), with notes pointing to what needs to change?
Okay, I’ll do that and send you the link. Thank you and have a nice weekend!
Trevor(Private) August 14, 2018 at 2:15 pm #185492This is the code for the datepicker:
.ll-skin-melon.searchandfilter-date-picker .ui-datepicker td { background: #fff; } .ll-skin-melon.searchandfilter-date-picker .ui-state-disabled .ui-state-default { color: #ccc; } .ll-skin-melon.searchandfilter-date-picker td .ui-state-default { color: #963; } .ll-skin-melon.searchandfilter-date-picker .ui-datepicker .ui-datepicker-title, .ll-skin-melon.searchandfilter-date-picker .ui-datepicker th span{ color: #fff; } .ll-skin-melon.searchandfilter-date-picker .ui-datepicker th { border-color: #fff; } .ll-skin-melon.searchandfilter-date-picker .ui-widget { background: #963; }
You did not say what border color you need, so I set it to white (#fff).
Trevor(Private) August 16, 2018 at 2:53 pm #185759I have modified the code I gave you before (added a line):
.searchandfilter > ul > li label > input.sf-input-text, .searchandfilter > ul > li label > select.sf-input-select, .searchandfilter > ul > li label > input.sf-datepicker, .searchandfilter > ul > li label { width: 100%; }
Now all but the button should be 100% wide. Is this what you wanted?
The borders (you can set text color here also, as I show):
.searchandfilter > ul > li label > input.sf-input-text, .searchandfilter > ul > li label > select.sf-input-select, .searchandfilter > ul > li label > input.sf-datepicker { border: 1px solid #963; color: #963; }
The placeholder color might be this (quite a few are for older browers):
.searchandfilter > ul > li label > input.sf-input-text::-webkit-input-placeholder, .searchandfilter > ul > li label > select.sf-input-select::-webkit-input-placeholder, .searchandfilter > ul > li label > input.sf-datepicker::-webkit-input-placeholder, .searchandfilter > ul > li label > input.sf-input-text::-moz-placeholder, .searchandfilter > ul > li label > select.sf-input-select::-moz-placeholder, .searchandfilter > ul > li label > input.sf-datepicker::-moz-placeholder, .searchandfilter > ul > li label > input.sf-input-text:-ms-input-placeholder, .searchandfilter > ul > li label > select.sf-input-select:-ms-input-placeholder, .searchandfilter > ul > li label > input.sf-datepicker:-ms-input-placeholder, .searchandfilter > ul > li label > input.sf-input-text:-moz-placeholder, .searchandfilter > ul > li label > select.sf-input-select:-moz-placeholder, .searchandfilter > ul > li label > input.sf-datepicker:-moz-placeholder, .searchandfilter > ul > li label > input.sf-input-text:placeholder, .searchandfilter > ul > li label > select.sf-input-select:placeholder, .searchandfilter > ul > li label > input.sf-datepicker:placeholder, { color: #963; }
-
AuthorPosts