• Resolved borkach

    (@borkach)


    Hi there,

    I am trying to put a submenu indicator but only on the mobile version of the website, not on the desktop version.

    Right now when you select the submenu indicator it puts it on both versions.

    Can anyone help?

    Thank you so much in advance!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @borkach

    Hope you are doing well!

    I can understand what you are looking for. We have included the device-specific style controller for the Submenu Indicator. You will be able to hide the indicator on the desktop by changing the color of the indicator only for desktop devices. You can check this screencasting to understand how to achieve that.

    You will also be able to achieve that by applying the CSS code mentioned below. Copy that CSS code and paste it to Appearance > Customize > Additional CSS section from your WordPress Dashboard.

    .elementskit-submenu-indicator {
        display: none !important;
    }
    @media (max-width: 1024px){
    .elementskit-submenu-indicator {
        display: block !important;
    }
    }

    That CSS will also help you to achieve what you are looking for. Let me know how it goes!

    Best Regards
    Prosenjit

    Hi @borkach

    We haven’t heard from you since the last reply. does the issue is solved now? or do you need any further assistance regarding the issue? Please let us know. We will be happy to help you.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need Submenu Indicator on Mobile ONLY’ is closed to new replies.