• Resolved bmartin3211

    (@bmartin3211)


    I want to hide the arrow that allows users to hide the bar. The arrow looks really bad on mobile with my theme. Does anyone know the CSS to do this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter bmartin3211

    (@bmartin3211)

    I found it.

    .mctb-close { display: none !important; } will hide it everywhere.

    You can also only hide it on smaller screens, like this:

    @media all and (max-width: 700px) {
    .mctb-close { display: none !important; }
    }

    for anyone wondering how to do it.

Viewing 1 replies (of 1 total)
  • The topic ‘How to hide the dropdown arrow?’ is closed to new replies.