Viewing 7 replies - 1 through 7 (of 7 total)
  • Leo

    (@leohsiang)

    Hi there,

    Can you disable your caching plugin so I can take a closer look at the code?

    Thanks ??

    Thread Starter Sahil Dadwal

    (@jack2020)

    I disable caching plugin. You can chk now ??

    Leo

    (@leohsiang)

    I’m seeing this CSS you’ve added that’s causing the issue:

    button:active, button:focus, button:hover, a.read-more:active, a.read-more:focus, a.read-more:hover, input[type="button"]:active, input[type="button"]:focus, input[type="button"]:hover {
        color: rgb(39, 28, 0);
        box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px, rgb(114, 75, 183) 0px 0px 0px 4px;
        color: rgb(255, 255, 255);
        outline: none;
    }

    Try editing this:
    button:hover

    to this:
    button:not(.menu-toggle):hover

    Thread Starter Sahil Dadwal

    (@jack2020)

    Leo

    (@leohsiang)

    Try replacing:
    button:active

    with:
    button:not(.menu-toggle):active

    Basically, you want to exclude .menu-toggle from your custom CSS. You can use the browser inspect tool to see which CSS is interfering with.

    Thread Starter Sahil Dadwal

    (@jack2020)

    Done. I removed totally button css and its fixed.

    Leo

    (@leohsiang)

    Sounds good.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how to remove this color from mobile layout header menu’ is closed to new replies.