• Hi, my site is down menu horizontal, I would like to have each line one above the other.
    I tried various changes in the CSS, but none is good (static, relative).

    .menu-item {
        display: inline-block;
        position: relative;
        text-indent: 5px;
    }

    This code puts vertically but verbatim, not line menu line.

    https://www.lac-tanganyika.info/blog/

    PS: I use google translator, sorry.

Viewing 1 replies (of 1 total)
  • if you mean your horizontal submenu and you want them vertical
    find in your css file and add width 120px

    .top-nav .sub-menu, .top-nav .children {
        display: none;
        position: absolute;
        z-index: 9999;
        width: 120px;
    }

    your menu gets vertical

    the white lines above and below the Header are not at the same height

    in your css file change the line-height: 83px;

    .section-banner h1 {
        font-family: "Lustria",serif;
        color: #FFF;
        font-weight: 400;
        font-size: 64px;
        line-height: 83px;
        display: inline;
        text-align: center;
        text-transform: uppercase;
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #FFF;
        margin-top: 160px;
        word-wrap: break-word;
    }

    it will look like this
    https://f.666kb.com/i/cxmeg3u0peepvhplc.jpg

Viewing 1 replies (of 1 total)
  • The topic ‘Down menu problem’ is closed to new replies.