Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Looks like that’s purposely built into your theme.
Can you ask your theme’s vendors for support instead?
As WordPress doesn’t provide support for commercial products.
http://codex.wordpress.org/Forum_Welcome#Commercial_Products
the guys above are right: this forum only fully supports themes from http://wordpress.org/extend/themes/
however, this is a quickfix;
overwrite your theme’s style with:
.hentry ul li { list-style-type: square; }
add this to the bottom of style.css of your theme.
try to get familiar with browser inspection tools and css
http://www.w3schools.com/css/css_list.asp
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
BTW Alchymyth, have you ever tried using initial instead?
It’s apparently not a valid value for that property, but it seems to work for me. Maybe it only works in new browsers.
@andrew
this initial is new to me – just tried it and it seems to show up as disc (FF20);
possibly related with disc being the initial value ? https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type?redirectlocale=en-US&redirectslug=CSS%2Flist-style-type
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I see. So, “initial” just seems to represent the default value. Thanks for clearing that up 🙂