There should be an option in your theme to customize the front page turning off the recent post section to get rid of the hello world post or any recent posts from displaying on the front page.
As for the search bar, you can do it either through the php, not recommended, or through CSS. Be sure to create a child theme to preserve the changes unless the theme came with a custom css section.
This is what code you would put
.search-toggle::before {
display: none;
}
Good luck
Thread Starter
Lizen1
(@lizen1)
Thank you so much!!!:D I got rid of the post on front page, and the search icon is also gone – except for mobile version. I tried the same code there in css. Maybe I don´t understand where to place the code in css to remove search icon for mobile version, or is it a different code that has to be used there?