Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Clayton R

    (@mrclayton)

    Hi @hype123,

    It’s not coming from the Stripe plugin. You have some CSS that’s causing that dot to appear. Look for list styling, that’s what causes bullets like that.

    You didn’t provide instructions for your site so I don’t know how to access your checkout page.

    Kind Regards,

    Thread Starter hype123

    (@hype123)

    @mrclayton
    The easiest way to get to the checkout is to create an account, then create a car listing and then you will be directed to the checkout page.

    Plugin Author Clayton R

    (@mrclayton)

    Hi @hype123

    No registration confirmation was emailed to me.

    Per my first reply, your theme’s styling is most likely causing that dot. You will need to add some custom CSS to override your theme’s styling in that instance.

    Here’s a guide on how to find the CSS that’s causing the dot to show:

    https://www.seoptimer.com/blog/view-source-chrome/#How-to-view-your-web-pages%E2%80%99-source-code-on-Chrome

    Kind Regards,

    Thread Starter hype123

    (@hype123)

    @mrclayton
    That’s strange, maybe it went to your spam folder.
    I’ve confirmed your email address now so you should be able to login.
    Also I can’t see it in the developer’s tool?

    Plugin Author Clayton R

    (@mrclayton)

    @hype123 it’s your Vehica theme. There is CSS that is applying a red dot to all li tags. You need to override it:

    .elementor-widget-text-editor ul li::before{
        content: "" !important;
    }
    Thread Starter hype123

    (@hype123)

    @mrclayton
    Thanks for the code but it removes all bullet points across the site, is there anyway to just remove it on the checkout page?

    Plugin Author Clayton R

    (@mrclayton)

    Ya you need to make the CSS more specific so it only targets that particular element.

    .elementor-widget-text-editor ul li.wc-stripe-checkout-banner-gateway::before{
      content: '';
    }

    Learning about how CSS works will definitely serve you well in the future when things like this pop up.

    Kind Regards,

    Thread Starter hype123

    (@hype123)

    @mrclayton Thank you 🙂

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Strange Red Dot’ is closed to new replies.