andrewwinkler
You can use this custom CSS code:
/*remove blur filter*/
.ja-search .box-bg .bg-inline {
filter: none;
}
/*font color*/
.ja-search h1 {
color: your_desired_color_here;
}
.ja-search .search-description {
color: your_desired_color_here;
}
WIth the search title, the template uses H1 tag there, if you want to change to another tag, you can edit via this PHP file:
root/templates/ja_cityguide/html/com_search/search/search.php
<h1 class="search-title">
<?php echo $this->params->get('title-search') ;?>
</h1>
Regards