• Hello

    A weird one popped up today.

    Bullets for unordered lists no longer appear in mobile view. They appear in desktop view.

    The bullets appear in the editor in both mobile and desktop.

    If it’s an ordered list, the numbers appear in both mobile and desktop.

    Any insight would be appreciated.

    I did turn off two recent plugins because of updates, that did not fix the issue.

    The site is Elementor, but I do not use the element editor for posts.

    Cheers

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

Viewing 1 replies (of 1 total)
  • This is caused by this style in the CSS file of the theme:

    @media (max-width: 767px) {
    ul li {
    display: block !important;
    }
    }

    You can overload this by adding the following to your own custom CSS:

    @media (max-width: 767px) {
    body ul li {
    zoom: 1 !important;
    }
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.