• Im seeing just above the Month, Day and year numbers 1. 2. and 3. In the code they show as markers

    ie:

    ::marker {
        unicode-bidi: isolate;
        font-variant-numeric: tabular-nums;
        text-transform: none;
        text-indent: 0px !important;
        text-align: start !important;
        text-align-last: start !important;
    }

    How do i not have these numbers appear?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @garmatinc,

    That is the list-style css property, which is normally removed in our css. Sounds like something is overriding it so this should help:

    
    .age-gate-form-elements { list-style: none !important; }
    

    Thanks
    Phil

    Thread Starter garmatinc

    (@garmatinc)

    Got it to work.

    Had to use this instead

    .age-gate-form-section {
    list-style: none !important;
    }

    Donation on its way!

    • This reply was modified 3 years, 3 months ago by garmatinc.
    Plugin Author Phil

    (@philsbury)

    Interesting. Have you got a link that’s accessible?

    Maybe try:

    .age-gate-form-elements li { list-style: none !important; }

    I might be something more custom in your theme css though so a link I can inspect would be great.

    Thanks
    Phil

    Thread Starter garmatinc

    (@garmatinc)

    Got it to work.

    Had to use this instead

    .age-gate-form-section {
    list-style: none !important;
    }

    Donation on its way!

    Plugin Author Phil

    (@philsbury)

    Ha! That was essentially my second suggestion. Glad it’s all good now ??

    Thanks
    Phil

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Marker showing on Age Gate, how to remove?’ is closed to new replies.