Ya the way theme logos are handled have changed. Instead of it being a background image, its an actual <img>.
Here are some Liferay 6.1 logo tips.
you can target the default logo, which is the default Liferay logo by :
1
2#heading .site-title .logo.default-logo {
3 background: url(../images/custom/logo.png) 0 50% no-repeat;
4 height: 40px;
5 width: 145px;
6}
7
8#heading .site-title .logo.default-logo img {
9 display: none;
10}
To target the custom logo use this css
#heading .site-title .logo.custom-logo {
}
When ever I try to update a theme to a new version of Liferay I do a file merge for portal_normal.vm so that I make sure I get the latest features/changes exposed in my theme.
Please sign in to flag this as inappropriate.