Snippet / Theme Options > Custom CSS or Theme Builder footer CSS

Remove Bullet Points from Divi Footer Widgets

A tiny CSS cleanup for footer widget lists, menus, and link groups that should look intentional instead of default-browser plain.

Use this when footer widgets inherit list bullets or inconsistent spacing.

.dfy-footer-clean-list ul,
.dfy-footer-clean-list ol,
#footer-widgets .footer-widget ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.dfy-footer-clean-list li,
#footer-widgets .footer-widget li {
  margin: 0 0 0.55rem;
  padding-left: 0;
}

#footer-widgets .footer-widget li::before {
  display: none;
}

Notes

  • For Theme Builder footers, prefer the dfy-footer-clean-list class on the menu or footer wrapper.
  • Keep enough spacing between links for touch targets.

Sources