Hi,
Thanks for getting back to me. My wife actually found a solution to the same. Can you please let me know if it is proper. It looks completely fine with bullets not appearing now. She basically through reverse engineering found the bullet element and kind of nullified it. Can you pls let me know if its fine.
before code( with red bullet)
.page-content ul li:before, .entry-content ul li:before {
font-family: “genericons”;
content: ‘\f428’;
font-size: 20px;
margin: 0 0 0 -4px;
padding: 0 4px 2px 0;
vertical-align: middle;
text-align: left;
}
——-
After ( without red bullet) code
.page-content ul li:before, .entry-content ul li:before {
font-family: “genericons”;
content: ”;
font-size: 20px;
margin: 0 0 0 -4px;
padding: 0 4px 2px 0;
vertical-align: middle;
text-align: left;
}
She basically nulled the bullet content and input the code in additional css. Is that technically fine? Its working and now bullets are not appearing.
No cache plugins are installed. yes cleared cache and visited in incognito.
My query is just that optically we have found a solution, is it technically sound as well. Please let me know. If yes, we can put this matter to rest.
Thanks in advance.