Please provide a site link…without, your question is too generic to answer.
In my Twenty Twelve theme, I went to Appearance > Themes > Customize and unchecked “Site Title & Tagline”.
If you provide a site link, some forum users ‘may’ review the site CSS and note how to ‘hide’ the elements with CSS (so they do not display in a browser) but still have them in the source code output by PHP and WP: so that Search Engines see it…without the link, we cannot…
http://codex.wordpress.org/Designing_Headers#Hiding_the_Header_Text
if the general suggestions do not work, contact the theme’s developer for support;
the theme is not supported by this forum.
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.