Hi Rachael,
Here is the code that solve my problem:
function no_search_results() {
if (is_search()) {
echo ‘<div class=”no-results”>’;
echo ‘<h1>No results</h1>’;
echo ‘</div>’;
}
}
add_action(‘thesis_empty_loop’,’no_search_results’);
Hope this work for you as well. Good Luck!