How can i disable this from dropping down when i scroll downwards ?? pls help thanks
This is happening because of a long username.
The header does not have much space to display long usernames so when you use long usernames it tries to adjust in header and hence the result is what you see.
So the possible solution to this is:
1) Use small usernames.
OR
2) Hide usernames and only show profile pic.
To hide username, paste this code in wplms-customizer.php file present in your wplms customizer plugin.
add_action('wp_footer','custom_remove_username');
function custom_remove_username(){
if(is_user_logged_in()){
?>
<style>
header .smallimg.vbplogin span {
display:none;
}
</style>
<?php
}
}