I apologize the delay here
In the Visual Editor Cell you will need to make sure that you use HTML mode, but I'm sure you did that correctly.
Then it depends where you inserted that Cell.
With "on the top" do you mean it displays above your Logo?
I would need to see your Layout setup live, if possible, to see what to change.
It's difficult to reproduce this since I don't know how your Layout is set up and where you use it, additionally what CSS you use.
For that, I would eventually also need to request temporary access (WP-Admin and FTP) to your site
- preferably to a test site where the problem has been replicated if possible -
in order to be of better help and check if some configurations might need to be changed
Your next answer will be private which means only you and I have access to it.
❌ Please backup your database and website ❌
✙ I would additionally need your permission to de- and re-activate Plugins and the Theme, and to change configurations on the site.
This is also a reason the backup is really important
For the "redirection" (refresh), I would suggest this snippet to your functions.php:
/**
*Used to redirect after logout
*/
function logout_page() {
$login_page = home_url();
wp_redirect( $login_page . "" );
exit;
}
add_action('wp_logout','logout_page');
This redirects to your Home URL after logout.
You can use any URL you want.
Please let me know if you have further questions regarding the issue mentioned in this Thread
Thank you for your patience.