Need to Extend Menu space

hey guys, my menu here: www.inmarket.io, is at capacity; if i add one more item to that header menu, it goes into a second line, like this: https://www.dropbox.com/s/e5cf4xirytx42z6/Screenshot%202016-04-12%2021.16.23.png?dl=0

please advise. thanks for the help!

Hi EngineeringRFQ,

Try using the following CSS codes and let us know how it goes.

@media (min-width: 992px)
.col-md-8 {
    width: 80%;
}

@media (min-width: 992px)
.col-md-4 {
    width: 20%;
}

Jun

hey Jun, that doesn’t seem to be having any effect, in css the first line goes red, i also tried it in the header code section and that didn’t work either?

https://www.dropbox.com/s/1gol8wz30ulwdss/Screenshot%202016-04-15%2014.57.44.png?dl=0
you can see the header menu is still in 2 rows in the screen shot and at www.inmarket.io

Hey EngineeringRFQ!

That was not the correct syntax, I forgot some brackets in there. Sorry about that! Try this one instead.

@media (min-width: 992px){
  .fl-page-nav-col {
      width: 80%;
  }
}

@media (min-width: 992px){
  .fl-page-header-logo-col {
      width: 20%;
  }
}

Jun

worked! thanks Jun!

Hey EngineeringRFQ!

You’re welcome and thanks for taking the time to let us know. We appreciate it!

Jun