This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Customization of Search Page

#25640
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

1. I think you are looking for the taxonomy terms as results feature.

2. Well, this might hive you something close to that:

.asp_r {
    border: none !important;
    border-left: 1px solid #dfe1e5 !important;
    border-right: 1px solid #dfe1e5 !important;
    border-bottom: 1px solid #dfe1e5 !important;
    margin-top: -12px !important;
    padding: 0 !important;
}

.asp_m .probox {
    border: none !important;
    box-shadow: none !important;
}

.asp_m {
    border-radius: 12px !important;
    border: 1px solid #dfe1e5 !important;
}

3. I think it is due to the results position is set to “block” instead of the default “hover” mode, and the results container is also part of that block, which is centered overall.

4. Drop-downs are very hard to customize on cross platforms, so there is only a built in theme that we use. The chosen script drop-down is even more problematic sometimes. You can start off with something like this:

.chosen-container, 
.chosen-container .chosen-single {
    background: none !important;
    border-radius: 12px !important;
}

.chosen-container .chosen-single {
    min-height: 58px !important;
    line-height: 45px !important;
}

5. I’m afraid that is not possible. It is not possible to tell before the redirection if there is any results – as the results are parsed after the redirection in that case, in a separate process.