Bullet points gone after using the Plugin (solution)
-
Hi, i really liked the icons which this Plugin offers, but I always had the problem that the Bullet Points in normal Texts are gone (Elementor Text Widget), because the Plugin somehow sets them to display: none…if you have that issue too, here is the Solution. A quick function which you can put into your functions.php (appearance -> Theme Editor):
/**
fix for bullet points RTM Kit
*/
function fix_rtmkit_bulletpoints_css() {
?>
<style>
.elementor-widget-text-editor ul li {
list-style-type: disc !important;
list-style-position: outside !important;
margin-left: 1.2em !important;
display: list-item !important;
}
</style>
<?php
}
add_action('wp_head', 'fix_rtmkit_bulletpoints_css', 99);
The topic ‘Bullet points gone after using the Plugin (solution)’ is closed to new replies.