Sorry guys. I solved this problem. I’m writing for other friends who will see same problem. You can hide your bloginfo on theme. You can hide from only visitors. Google or Web Browser can see it. If you wanna hide your Bloginfo and Description, That’s the solution. An Example for Nomad Theme. I opened CSS style and found
#blogname h1 {
font-size: 42px;
margin: 15px 0px 0px 0px;
font-weight: normal;
text-align:center;
}
after i changed like that
#blogname h1 {
font-size: 1px;
margin: 15px 0px 0px 0px;
font-weight: normal;
text-align:center;
visibility:hidden;
}
I hid my blogname succesfully. I changed font-size because Logo and a sidebar between had a big space. Thank you guys for interest my problem.