CMS Development

AMA_Anthony
Member

Custom bullets appearing along with placeholder bullets

SOLVE

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. Capture-Bullets-Radio Button.PNG

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

 

 

0 Upvotes
1 Accepted solution
Jsum
Solution
Key Advisor

Custom bullets appearing along with placeholder bullets

SOLVE

@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;
}

View solution in original post

4 Replies 4
Jsum
Key Advisor

Custom bullets appearing along with placeholder bullets

SOLVE

Hi @AMA_Anthony ,

 

You need to style your form <ul> elements:

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

AMA_Anthony
Member

Custom bullets appearing along with placeholder bullets

SOLVE

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

Capture-Bullets-Radio Button v2.PNG

0 Upvotes
Jsum
Solution
Key Advisor

Custom bullets appearing along with placeholder bullets

SOLVE

@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;
}
JLewis385
Participant

Custom bullets appearing along with placeholder bullets

SOLVE

Thanks, this worked for me. 

0 Upvotes