Homepage › Community Forums › Epik Theme Support › Logo image in the nav-bar? › Reply To: Logo image in the nav-bar?
The logo/title area and the header right widget area are both too wide to fit within the 1152px space on the same line. That is what’s causing the issue. To fix this, first look around line 681 in your css file for this –
`.header-image #title,
.header-image #title a,
.header-image #title-area {
display: block;
float: left;
min-height: 120px;
overflow: hidden;
text-indent: -9999px;
width: 50%;
}`
…..change the width to the size of your logo (which appears to be 350px).
Then look around line 697 in your css file for something like this –
`#header .widget-area {
overflow: hidden;
width: 65%;
}`
….and change the width to around 60%. Once you do this, they should both sit on the same line like the demo.
