OK..make also this changes in style1.css style2.css and style3.css.
Change this code (style1.css):
h1.logo,
h1.logo-text { background:#e3012d url('../images/style1/color_bg.png') repeat-x 0 bottom; }
h1.logo { background:#e3012d url('../images/style1/color_bg.png') repeat-x 0 bottom; }
h1.logo>a { background-image:url('../images/style1/logo.png'); }
with this:
div.logo,
div.logo-text { background:#e3012d url('../images/style1/color_bg.png') repeat-x 0 bottom; }
div.logo { background:#e3012d url('../images/style1/color_bg.png') repeat-x 0 bottom; }
div.logo>a { background-image:url('../images/style1/logo.png'); }
div.logo,
div.logo-text { background:#e3012d url('../images/style1/color_bg.png') repeat-x 0 bottom; }
div.logo { background:#e3012d url('../images/style1/color_bg.png') repeat-x 0 bottom; }
div.logo>a { background-image:url('../images/style1/logo.png'); }
Do the same for style2 and style3 making the same changes.
Then open css3.css and make this changes:
h1.logo,
div.logo-text { -webkit-border-top-left-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-topleft: 3px; -moz-border-radius-bottomleft: 3px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
with:
div.logo,
div.logo-text { -webkit-border-top-left-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-topleft: 3px; -moz-border-radius-bottomleft: 3px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
It works for me.
Cheers.