I18N Search version 2.3:
For an example see http://mvlcek.bplaced.net/search/.
To make sure that tags are grayed out, if they are not available, make sure to define CSS rules like
To adjust the auto-complete styles to your site's look-and-feel, you need to add CSS rules like this:
Look at /plugins/i18n_search/css/jquery.autocomplete.css, if you want to change more.
- do not show tag cloud on search form, if javascript is disabled
- if tags are selected, all other tags that a combination with whom would yield zero results, are marked
- the search text field will suggest words, if letters are entered
For an example see http://mvlcek.bplaced.net/search/.
To make sure that tags are grayed out, if they are not available, make sure to define CSS rules like
Code:
#content .tags .tag {
cursor: pointer;
}
#content .tags .tag.selected, #content .tags .tag.selected.unavailable {
color: blue;
}
#content .tags .tag.unavailable {
color: lightgray;
}
To adjust the auto-complete styles to your site's look-and-feel, you need to add CSS rules like this:
Code:
body .ac_odd {
background-color: blue;
}
body .ac_over {
background-color: lightblue;
color: white;
}