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 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:
Thanks @Jsum but it’s still giving me problems.
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.