Centered Header menu aligning right when scrolling

Hi support,

Hope you don’t mind me re-posting this as a new ticket as I went slightly off topic in earlier ticket with Ben.

Is there away to prevent the main menu aligning right and subsequently going from 1 line to 2 lines when scrolling down as on my site below?

http://www.skylightnewcastle.co.uk/

Hey Gerry,

I’ve replied to the other thread but let me just paste it here instead together with the right aligning issue. Try these CSS snippets.

.fl-page-header-fixed .fl-page-header-row.row {
  display: block;
  width: 1000px;
  margin: 0px;
}
.fl-page-header-fixed .row > div:first-child {
  display: none;
}
.fl-page-header-fixed .row > div:nth-child(2) {
  width: 100%;
}

By the way, just to let you know, we don’t really do CSS support in this forum. We just like to show the ropes. :slight_smile:

Hope this helps!

Ben