• Resolved darkskyprophecy

    (@darkskyprophecy)


    Hi I would like to move my main navigation menu towards the left, closer to my logo so that I can make the text larger without it bumping to a second line.
    The site

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • You can use css like this:

    @media (min-width: 992px){
        .kad-header-left {width:20%;}
        .kad-header-right {with:80%;}
    }

    Kadence Themes

    Thread Starter darkskyprophecy

    (@darkskyprophecy)

    Thank you! You guys are great!

    Thread Starter darkskyprophecy

    (@darkskyprophecy)

    Ok I thought it was fixed but its not quite right. I’ve had to add another menu item, and it still bumps to a second line, even though it appears to have enough room. Here are the two css items i have currently.

    .sf-menu li a {
    padding-right: 15px;
    padding-left: 20px;
    }

    and

    @media (min-width: 992px){
    .kad-header-left {width:20%;}
    .kad-header-right {with:80%;}
    }

    Try changing the padding to this:

    .sf-menu li a {
    padding-right: 10px;
    padding-left: 10px;
    }

    let me know if that makes a difference.

    there is a typo in the css I posted:

    @media (min-width: 992px){
        .kad-header-left {width:20%;}
        .kad-header-right {with:80%;}
    }

    Should be:

    @media (min-width: 992px){
        .kad-header-left {width:20%;}
        .kad-header-right {width:80%;}
    }

    Sorry about that.

    Kadence Themes

    Thread Starter darkskyprophecy

    (@darkskyprophecy)

    Beautiful, works great, thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Moving Main Nav Menu Left’ is closed to new replies.