• Resolved thepiercer

    (@thepiercer)


    Hello. I am unable to see the ticker on mobile devices. It is visible on desktop version but not on mobile. I tried disabling all the plugins except ditty news ticket but still, the ticket is not visible on mobile devices.

    Please guide.

    URL: https://www.luxurycbds.com/

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author metaphorcreations

    (@metaphorcreations)

    Your ticker is placed within a div that is set to hide on mobile via css.
    The div contains a class called “show-on-desktop” that hides itself when the browser width is less that 1101px.

    Based on what I’m seeing in your source HTML, there is probably a setting somewhere in your theme, related to the “top bar” and the “mini-widgets” to modify this display somehow. If you are unable to track down where to change this please contact the theme author to get some advice.

    Alternately, you can use your own custom CSS to force this to display (though adjusting a single setting is the optimal solution). You can use the following css to force that area to display:

    @media screen and (max-width: 778px) {
      .masthead .top-bar .left-widgets .in-top-bar:not(.show-on-second-switch).microwidget-btn, .masthead .top-bar .left-widgets .in-top-bar:not(.show-on-second-switch).text-area {
        display: inline !important;
      }
    }
    Thread Starter thepiercer

    (@thepiercer)

    I added the code you mentioned and it solved the problem. Thank you for quick support.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Ticker not displaying on mobile devices’ is closed to new replies.