• Resolved Vad

    (@vadym1)


    I watch the site on 1920 screen. And
    the top menu has wrong indents on the sides.

    Now:

    .toggle-search {
        right: 30px;
    }
    .search-expand {
        right: 30px;
    }
    @media only screen and (min-width: 720px) {
    #nav-topbar .nav > li:first-child {
        margin-left: 30px;
    }
    }

    Need:

    .toggle-search { 
        right: 0px;
    }
    .search-expand {
        right: 0px;
    }
    @media only screen and (min-width: 720px) {
    #nav-topbar .nav > li:first-child {
        margin-left: 0px;
    }
    }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘The top menu has wrong indents’ is closed to new replies.