AP
0
iPhone not rendering bullets in a <ul>
We've noticed that iPhones do not render bullets within a <ul> list.
It appears on desktop and iPad however.
It shows an indented list with no bullet • preceeding that <li> item.
Has anyone figured out a fix for this sort of thing?
Hey Amanda,
Potential that the bullets are simply hidden due to a lack of indentation.
Have you set a margin or padding on the ul element?
If you have any code you can share, that will help with debugging.
Yes, one way to fix this issue is by adding the CSS property list-style-type: disc; to the ul element or li element in your stylesheet. This will display a bullet point for each list item in the unordered list. Another option is to use a custom image as a bullet point using the list-style-image property. https://www.caregiverconnect.net/
This is likely due to a CSS styling issue. Adding the CSS rule "list-style-type: disc" to the <ul> element should display bullets on iPhones as well.