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,
@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.
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,
@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?
@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;
}
@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?
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,