Search (almost) everything in one click, or select another tab for a different search option.
Use this simple search box to start your search. Additional filters and options will become available once you search.
First, add script to the guide's custom CSS/JS:
<!-- Script that converts the query string into valid parameter -->
<script type="text/javascript">
function searchPrimo() {
document.getElementById("primoQuery").value = "any,contains," + document.getElementById("primoQueryTemp").value;
document.forms["searchForm"].submit();
}
</script>
Add for customizing the tab styling in the guide's custom CSS/JS:
<style>/*Change tab color*/
#s-lib-ctabs-34245194 {
 font-family: Arial,Helvetica,Verdana;
    font-size: 16px;
    line-height: 1.75;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    position: relative;
    display: block;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #0a4068;
    color: #ffffff;
    font-weight: bold;
    padding: 4px 15px;
}
</style>