How To In Blogger : make you blogger page look professionnel -ask How to remove..

sometimes in  blogger we look for to put our  page  look as a professional one but with less knowledge in the script or html we can't do this alone .
Here is some commands that can help you be more convincing and make a succesful page  with montion How To:

1-How to remove navbar in blogger :
-go to blogger dashboard
-click layout
-go to navbar and click edit
-select off
-save and save arrengement

2-How to remove home frome blogger :
-go to blogger dashboard
-click template
-click customise
-go to add css
-put this code  and save  .home-link { display: none; }

3-How to remove subscribe from blogger :
-go to blogger dashboard
-click template
-click edit html
-find and remove <b:include data='feedLinks' name='feedLinksBody'/>
-save
*to find the html code click ctrl+f

4-How to remove dashed/dotted line from google blogger :
-go to blogger dashboard
-click template
-click edit html
-find and remove  .footer-outer {
  border-top: $(footer.bevel) dashed #bbbbbb;
}  
-save
*to find the html code click ctrl+f

5-How to remove powered by blogger from blogger :
-go to blogger dashboard
-click template
-click edit html
-find </head> 
-put above <style>
#Attribution1 {
display: none;
}
</style>
-save
*to find the html code click ctrl+f

6-How to remove labels frome blogger :
-go to blogger dashboard
-click template
-click edit html
-find </head>
-put above <style>
.post-labels {
display: none; 
}
</style>
-save
*to find the html code click ctrl+f

7-How to remove no post from blogger :
-go to blogger dashboard
-click template
-click customise
-go to add css
-put this code  and save .status-msg-wrap
{
display: none;
 }