Width of sticky header

I have a site that has quite a wide site title (text)
But when the page has the sticky header invoked, the text wraps.
I can see that the div has this: <div class=“col-md-3 col-sm-12”>
But not sure what is the best way to widen this column ?
TIA, Dave

ps: site is in development, in a temp location
http://perthfocus.com/saswa/

Hey Dave,

By default, the logo container for the fixed header only has a width of 25% while the nav container has 75%. Using this CSS snippet should allow you to set both to 50%.

.fl-page-header-fixed .row > div {
  width: 50%;
}

Ben