Hi,
in our site in the search form you see a different placeholder because it is not a number field type, it is date field type.
The placeholders for number field type in the search are predefined, these coming from a language strings.
If you want to change the text then you can follow the steps:
- Go to Extensions->Languages->Overrides
- Create new Language Override by click to "New" button
- Fill the form like screenshots, language constants are COM_JSN_STARTNUMERIC and COM_JSN_ENDNUMERIC
Why is the check boxes not aligned properly.. if its vertical, it work straight, but when otherwise it becomes as .. see image
This happen because the options are inline and your template add a margin to the left of each option except for the first option. You can solve it by adding following CSS code to your template:
.jsn_search_module label.checkbox.inline{margin-right:10px;}
.jsn_search_module label.checkbox.inline + label.checkbox.inline{margin-left:0px;}