Reply To: Changing length of floating navigation

Home Forums Support Changing length of floating navigation Reply To: Changing length of floating navigation

Home Forums Support Changing length of floating navigation Reply To: Changing length of floating navigation

#210097
Tim

I tried tried your suggestion and edited it a little bit. It seems to work on chrome and IE 11. Do you think this is a safe solution? It stops the logo from shrinking and stops the bar from jumping below the logo as you shrink:

@media (min-width: 769px) {
    .site-logo {
        width: 350px;
    }
    .nav-float-right .main-navigation {
        width: calc(100% - 350px);
    }
}