• Hey guys, I created a custom logo for my blog, dariankovach.com. I removed the site title under general because it was putting the title over the logo, with the title already on it.

    The issue now being, it shows no title at the tip top left hand side of the browser and I’m pretty sure it won’t show up in google searches without it. Any help would be great!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Put the site title back into Settings -> General then use CSS to move it off the displayed page.

    Thread Starter Justcrash

    (@justcrash)

    I am not good with CSS, any tips on how to do that? ??

    edit style.css of your theme; find:

    #blogtitle h2{
    	color: #000;
    	font-family: "Times New Roman", Times, serif;
    	font-size: 55px;
    	font-weight: bolder;
    }

    add text-indent:-9999px; to it;
    example:

    #blogtitle h2{
    	color: #000;
    	font-family: "Times New Roman", Times, serif;
    	font-size: 55px;
    	font-weight: bolder;
    text-indent:-9999px;
    }

    Thread Starter Justcrash

    (@justcrash)

    The -9999 was still visible (half of it) on the left, so i removed the minus sign and that did it, thank you!!!

    Is it possible to have a tag line that doesn’t show up also? If not, it isn’t an emergency, but I’m assuming that shows up in google searches also?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do I hide site title on my site?’ is closed to new replies.