Active
Project:
Urban Solice
Version:
7.x-1.0
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Mar 2012 at 06:43 UTC
Updated:
12 Apr 2012 at 07:13 UTC
Jump to comment: Most recent
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
Comment #1
john_b commentedI 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!
Comment #2
philsward commentedHere'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.
Comment #3
john_b commentedThanks for that.