Attribute Radiobutton List - bullet points

0
I am using the attribute radio button list in Mendix 5 with the Aurora theme. When I put this control on a page, it appears with bullet points next to each choice, like this: When I inspect that element in Chrome, I see the following: My question is, what do I need to do to remove the bullet points? Thanks for any pointers.
asked
2 answers
2

Hi Mike,

Did you try this? I think this should work, because it's specific enough.

.RadioButtonList ul 

{
list-style:none;
}
answered
0

List-style:none; in your css?

answered