hai squidpeg
try this code on your css..
.fusion-main-menu ul {
list-style: none!important;
}
The bullet points problem occure by your css.
You can change .element-container .double-column ul, .element-container .op-text-block ul {list-style:none;} into your style.css file.
Or You can add below function into your functions.php file
function custom_style() {
echo '<style>.element-container .double-column ul, .element-container .op-text-block ul {list-style:none !important;}</style>';
}
add_action('wp_head', 'custom_style');
Let me know incase of any concern with the same.
Thank you guys!
.fusion-main-menu ul {
list-style: none!important;
}
Worked for me!