The site name does not seem to be displayed at all. I have confirmed that site name is set to be displayed on admin/appearance/settings/urban_solice and that the site name shows up fine on other themes.

Comments

john_b’s picture

I can confirm I have the same bug. The reason is not obvious. A workaround is to drop the site title name in into a block with appropriate links and h1 tags. But it is not really a solution!

philsward’s picture

Here's the reason for the site name not showing up:

#site-name {
position: absolute;
text-indent: -9999px;
}

found in style.css

Override or get rid of it to fix the problem.

The reason it's there is to gain text for SEO when using a logo that has the site name as an image.

john_b’s picture

Thanks for that.