06/05/2013 at 1:33 pm
#261801
Keymaster
@ Nalini
This is being cause by the theme’s CSS. open the theme’s style.css file.
Change this starting on line 241 from this
.header-image #title-area,
.header-image #title,
.header-image #title a {
display: block;
float: left;
height: 120px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 400px;
}
to this:
#header #title-area,
#header #title,
#header #title a {
display: block;
float: left;
height: 120px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 400px;
}
And this starting on line 199 from this:
#title {
font-family: 'Vollkorn', serif;
font-size: 48px;
line-height: 1;
margin: 0;
text-transform: uppercase;
white-space: nowrap;
}
to this:
p#title {
font-family: 'Vollkorn', serif;
font-size: 48px;
line-height: 1;
margin: 0;
text-transform: uppercase;
white-space: nowrap;
}
That should fix it up nicely.