Hi,
1. I have a problem with the menu on screen sizes between 700 and 970px. That’s the size before the menu turns into a mobile menu and at that point it becomes vertical and looks ugly. (see attached picture). How to solve this so that the menu remains horizontal.
2. On mobile devices, the Search module located just below the masshead position does not work. (on https://planinarenje.ba/2000-plus) I think the problem is in:

.t3-mainnav:after {
    background: none;
    content: "";
    display: block;
    height: 152px;
    position: absolute;
    width: 100%;
    z-index: -1;
}

If I reduce the height from 152px to 15px then it works. Is it okay to do that?

    Hi midhat
    Add this code in custom.css file for the menu issue

    @media(max-width:979px) and (min-width:700px) {.nav-collapse .nav>li {
        float: left;
    }}

    The search appear working http://prntscr.com/vftc72 you need to scroll to top as once you scroll the menu is sticky that overlap it.

    Thanks. It's better now

    Ninja locked the discussion.
    Write a Reply...
    You need to Login to view replies.