Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi -@CustomizrLuvr

    I think you have done code editing in theme folders’s some files.
    Otherwise it is showing fine.

    Thank You!!

    Thread Starter CustomizrLuvr

    (@customizrluvr)

    Please tell which CSS is causing this.

    In Child Theme functions.php, there are only 2 snippets, neither of which concern the menu.

    Thread Starter CustomizrLuvr

    (@customizrluvr)

    Anyone?

    Thread Starter CustomizrLuvr

    (@customizrluvr)

    Nevermind figured it out. Now we cannot get “Back to home” off the homepage.

    Anyone know CSS?

    Try

    .menu-item-394 > a {
        display: none !important;
    }

    Thread Starter CustomizrLuvr

    (@customizrluvr)

    Great!

    Now we just need to get ” Cart -> ” on the right side. Can’t figure that CSS out either :s

    OK, try:

    .menu-item-393 > a {
      position: relative;
      left: 1150%;
    }

    But you’ll need to use @media for different viewports. The 1150% works on my 1920px monitor.

    Thread Starter CustomizrLuvr

    (@customizrluvr)

    It works except as you say, it varies by screen size.

    The following code is not working:

    @media (min-width: 980px){
        .nav-collapse .nav {
            width: 100%;
        }
        .menu-item-393 > a {
            float: right;
            padding-right: 15%;
        }
    }

    Any idea why?

    I’d use the following:

    @media only screen and (min-width: 980px) {

    but not sure that’s the problem.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Navbar menu display not working’ is closed to new replies.