CSS issue with ul in Sparkling

Hello,

I’ve got a clean new wp instance with a fresh Sparkling on it.
No code alterations made.

There is a CSS issue: in bulleted lists,

  1. bullets are not displayed
  2. unwanted hair lines are displayed between items.

Inspections shows that list-style: none for some reason:

Looks like a bug not feature, isn’t it, and how should I change it in the most proper way?

WBR,
Georgy

p. s. url = http://omnichannel.blagodatov.ru/

p.p.s. asterisks are created manualy as a temporary solution.

now I’ve patched the style.css manually, hardcoded changes to widget ul etc I need.
Still not sure it is the proper way… and hair lines in ul are also would be better disabled.

Hi Georgy,

I hope you are well today and thank you for your question.

This is happening on your site due to site origin panel plugin which is using CSS code the theme applies on sidebar widgets.

You can try resolving this issue by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS


#page .widget_sow-editor li {
    list-style: initial;
    border-bottom: 0;
    padding-bottom: 0;
}

Best Regards,
Movin

Thank you, that helped!

You are most welcome here :slight_smile: