Hi,
1) In the admin panel of the About Us page, switch to the standard editor https://yadi.sk/i/afDCKxsj5EDaKw Add an image to Featured image https://yadi.sk/i/9q0HnkySgJE8Ow you can also turn off the page title https://yadi.sk/i/mnGfH35-Vhw10g
Result https://yadi.sk/i/R-hvgWIOCN47Vg
2) To change the position of the search icon add the following code in Theme Settings -> Advanced -> Custom CSS -> Custom CSS field:
.site-header .add-btns li.search {
order: -1;
margin-left: 0;
margin-right: 10px;
padding-left: 0;
padding-right: 11px;
}
.site-header .add-btns li.search:before {
left: auto;
right: 0;
}
.site-header .add-btns li.search .btn {
padding-right: 8px;
}
To change the search text, follow the https://3degrees.vasenth.com/wp-admin/theme-editor.php?file=functions.php link and paste the following code after line 220 (https://yadi.sk/i/bDF6Q6GxLoKY2w)
function pniber_change_some_text( $translation, $text, $domain ){
if ( $text === 'Type your keywords...' ) {
$translation = 'What are you looking for?';
}
return $translation;
}
add_filter( 'gettext', 'pniber_change_some_text', 10, 3 );
Regards, LenVan