• Resolved T18DJ

    (@theuts)


    Hi,

    How can I change the color of the responsive menu, the background is white and the text is white too.
    I’ve searched and tried different things in the style.css but those changes were only noticeable at the normal site, not the responsive (iphone) one.

    Please help me,

    Tom Heuts

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author HooThemes

    (@hoosoft)

    You should change the style inside @media screen and (max-width: xxxpx){ ... } for responsive layout.

    For example, change the background color to black.

    @media screen and (max-width: 919px){
     .site-nav {
    display: none;
    width: 100%;
    margin-top: 0;
    background-color: #000;
    position: absolute;
    top: 89px;
    left: 0;
    z-index: 9999;
    }
    
    }

    Thread Starter T18DJ

    (@theuts)

    Okey thanks this part works, but how can I solve the Sub menu , those still have a white background.

    Thread Starter T18DJ

    (@theuts)

    ?

    Theme Author HooThemes

    (@hoosoft)

    We will add more color options, please wait for future upgrades.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Responsive menu color’ is closed to new replies.