Custom bullets appearing along with placeholder bullets

Hi there,

I’m having an issue removing bullets on radio buttons and I’m not sure what to do on this. Any help or ideas would be appreciated.

http://info.commerce.ama-assn.org/ama-web-series-ama-guides-web-forum-feedback

Hi @AMA_Anthony ,

You need to style your form <ul> elements:

https://embed.vidyard.com/share/qLcJanZATzAM1KowqDFj4U?

Thanks @Jsum but it’s still giving me problems.

@AMA_Anthony ,

It looks like you need to apply the css to a stylesheet connected to the page. I don’t see the css needed to fix the issue in the inspector for your page. try adding something like this to your style sheet:

form.hs-form ul,
form.hs-form ul li {
 list-style: none;
 padding-left: 0;
}

Thanks, this worked for me.